/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Sep 1, 2023, 12:57:54 PM
    Author     : Dave Feltz <dave@davefeltz.com>, https://www.davefeltz.com
*/

.logged-out-home-title {
    margin-top: 30px;
    margin-bottom: 30px;
}

.login-block {
    border: 2px solid lightgray; 
    border-radius: 5px; 
    max-width: 400px; 
    margin: auto;
    padding: 20px 20px 20px 20px;
    background-color: #f8f9fa;
}

.login-block input {
    width: 100%;
    margin-bottom: 15px;
}

.copy-right-row {
    margin-top: 30px;
}

#error_div {
    color: red;
    font-weight: bold;
    margin-top: 15px;
}

.nav-link.active {
    color: white !important;
}

@media (min-width: 991px) {
    .left-nav-column {
        height: 100vh;
        background-color: #f8f9fa;
    }
}

.wf-nav-item {
    margin-top: 15px;
}

#logged_in_name {
    font-weight: bold;
    font-size: 1.1rem;
}

#dashboard_loader_container {
    margin-top: 30px;
    display: none;
}

.dashboard-company-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.status-table-first-row {
    margin-top: 15px;
    margin-bottom: 15px;
}

.status-table-row {
    border-bottom: 1px lightgray solid;
    margin-bottom: 5px;
    padding-top: 10px;
}

.status-table-odd-row {
    background-color: #fbfbfb 
}

.status-table-even-row {
    background-color: #f1f1f1; 
}

.status-table-column-content {
    padding-bottom: 15px;
}

.status-table-column-header {
    color: #0d6efd;
    font-size: 1.4rem;
}

#modal_loader_container {
    display: none;
}

.modal-loader {
    width: 30px;
}

.login-block-title {
    margin-bottom: 10px;
    
}

.modal-select {
    font-size: 1.2rem;
}

.modal-item-content {
    margin-bottom: 20px;
}

.view-task-status-modal-content {
    padding-left: 20px; 
    padding-right: 20px;
}

.small-red-text {
    font-size: .8rem;
    color: red;
}

.new-user-btn {
    display: inline;
    margin-bottom: 10px;
    margin-left: 20px;
    max-width: 200px;
}

.edit-user-head {
    display: inline;
}

.no-status-table-row {
    margin-bottom: 20px;
}

.new-item-btn {
    display: inline;
    margin-bottom: 10px;
    margin-left: 20px;
}

.confirm_error_div {
    color: red;
    font-weight: bold;
    margin-top: 15px;
    display: none;
}

.instructions-btn {
    margin-top: 20px;
}

.documentation-text {
    font-size: 1.2rem;
}

.item-notes-container {
    overflow-y: auto;
    display: -webkit-box;
   -webkit-line-clamp: 4; /* number of lines to show */
   -webkit-box-orient: vertical;
}

.show-modal-btn { 
    width: 100%;
}

.last-updated-container {
    margin-left: 20px;
    margin-top: 5px;
}

.save-error {
    margin-left: 10px;
    margin-right: 10px;
}

@keyframes yellowfade {
    from {
        background: yellow;
    }
    to {
        background: transparent;
    }
}

.flashClass {
    animation-name: yellowfade;
    animation-duration: 3s;
}

.returned-item {
    background-color: #fcc1c1;
    border: 2px solid red;
}

.returned-reason-message {
    font-size: 1.2rem;
    font-weight: bold;
    color: red;
}