/* HEADER */

.header-bar {
    background: #dddddd;
    padding: 0px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.header-logo {
    height: 70px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-user {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
}

.logout-icon {
    color: #000000;
    font-size: 25px;
    text-decoration: none;
    transition: 0.2s ease;
}

.logout-icon:hover {
    color: #ffc107;
}

/* Sticky header (optional but recommended) */
.header-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ACTION BAR (FIXED BOTTOM) */

.action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px;
    display: flex;
    gap: 10px;
    border-top: 1px solid #ddd;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

/* Prevent content from being hidden behind bar */
body {
    padding-bottom: 80px;
}

/* LOGIN PAGE */

.login-page {
    background: #f4f6f8;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* MAIN CONTAINER */
.login-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* TOP LOGOS */
.top-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.logo-small {
    max-width: 80px;
}

.logo-main {
    max-width: 140px;
}

/* FORM */
.login-content {
    width: 90%;
    max-width: 350px;
    text-align: center;
}

/* INPUTS */
.login-content .form-control {
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
}

/* BUTTON */
.login-content .btn-primary {
    background: #013d59d0;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 500;
}

.login-content .btn-primary:hover {
    background: #02527a;
}

/* BOTTOM LOGO */
.bottom-logo {
    margin-top: 40px;
}

.logo-bottom {
    max-width: 120px;
    opacity: 0.8;
}

.alert-warning {
    background-color: #fff3cd;
    border-left: 5px solid #ffcc00;
    font-size: 14px;
    line-height: 1.5;
}

.flatpickr-time {
    direction: ltr;
}

.flatpickr-am-pm {
    display: none !important;
}
/* .form-floating > label {
    color: #6c757d;
}*/

.form-floating > .form-control,
.form-floating > .form-select {
    border-radius: 8px;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-select:focus ~ label {
    color: #013d59;
}

.custom-toast {
    background-color: #c0ff96;   /* light green */
    color: #1e7e34;              /* darker green text */
    border-left: 4px solid #28a745;
    min-width: 300px;
}

.custom-toast .btn-close {
    filter: none;
}