﻿/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

:root {
    --primary-green: #1B5E20;
    --primary-green-dark: #144a1e;
    --accent-yellow: #F4C430;
    --bg-light: #F9FAFB;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --border-color: #E5E7EB;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
}

/* ================= TOP NAVIGATION BAR ================= */
.navbar {
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--accent-yellow);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    height: 56px;
    width: 56px;
    background-color: #ffffff;
    border-radius: 50%;
    object-fit: contain;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-center {
    display: flex;
    gap: 10px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-yellow);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--accent-yellow);
    font-weight: 600;
    border: 1px solid var(--accent-yellow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notification-bell {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.notification-bell:hover {
    color: var(--accent-yellow);
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
}

.user-menu {
    position: relative;
}

.user-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.user-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--accent-yellow);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 200px;
    display: none;
    overflow: hidden;
    z-index: 100;
}

.user-dropdown.show {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-green);
}

/* ================= CONTAINER ================= */
.dashboard-container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-wrapper {
    width: 100%;
}

/* ================= PAGE HEADERS ================= */
.page-header {
    margin-bottom: 30px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-gray);
}

/* ================= HERO SECTION ================= */
.hero-section {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.hero-dept {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: inline-block;
    background: #e2e8f0;
    padding: 4px 10px;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 16px;
    color: #64748b;
}

/* ================= STATS CARDS ================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--accent-yellow);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Specific Card Styles */
.stat-card.total .stat-icon {
    background-color: #f0fdf4;
    color: var(--primary-green);
}

.stat-card.open .stat-icon {
    background-color: #fefce8;
    color: #eab308;
}

.stat-card.progress .stat-icon {
    background-color: #dcfce7;
    color: #16a34a;
}

.stat-card.resolved .stat-icon {
    background-color: #dcfce7;
    color: #14532d;
}

.stat-card.closed .stat-icon {
    background-color: #f1f5f9;
    color: #475569;
}

/* ============================= */
/* ULTRA MINIMAL GLASS PAGINATION */
/* ============================= */
.pagination-glass {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.page-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #d7e2ea;
    color: var(--text-dark);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transition: all 0.2s ease;
}
.page-btn:hover:not(.active):not(.disabled) {
    background: #f8fafc;
    transform: translateY(-1px);
    border-color: #cbd5e1;
}
.page-btn.active {
    background: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
    box-shadow: 0 10px 18px rgba(27, 94, 32, 0.22);
}
.page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
    box-shadow: none;
}
.page-btn.prev,
.page-btn.next {
    gap: 8px;
    padding: 0 18px;
}

/* ================= FORMS & CARDS ================= */
.form-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 40px;
    max-width: 850px;
    margin: 0 auto;
    border-top: 3px solid var(--accent-yellow);
}

.form-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.form-section-title:first-child {
    margin-top: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group.half {
    width: 50%;
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-control {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.2s;
    background-color: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
}

.form-control.readonly {
    background-color: var(--bg-light);
    color: var(--text-gray);
    cursor: not-allowed;
    font-weight: 600;
}

textarea.form-control {
    min-height: 120px;
    height: auto;
    resize: vertical;
    padding: 14px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
    font-size: 12px;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fafc;
    border: 1px solid #dcdcdc;
    padding: 10px;
    border-radius: 10px;
}

.file-input {
    display: none;
}

.file-label {
    padding: 8px 16px;
    background-color: #f0fdf4;
    color: #1B5E20;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.file-label:hover {
    background-color: #dcfce7;
}

.file-name {
    font-size: 14px;
    color: #64748b;
}

.form-text {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #94a3b8;
}

.form-actions {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

.btn-submit {
    background: linear-gradient(135deg, #1B5E20 0%, #144a1e 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(27, 94, 32, 0.2);
}

.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(27, 94, 32, 0.25);
}

@media (max-width: 768px) {
    .form-card {
        padding: 20px;
    }
    
    .btn-submit {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.half {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Full Width Notification Panel */
    .notification-dropdown {
        width: 100% !important;
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        border-radius: 0 !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
        margin: 0 !important;
        transform: none !important; /* Override any transform positioning */
    }

    /* Ensure Touch Targets */
    input, select, textarea, button, .btn, .nav-link {
        min-height: 44px;
        box-sizing: border-box;
    }

    /* Full Width Inputs */
    .form-control, 
    .filter-input, 
    .filter-select {
        width: 100% !important;
    }

    /* Font Sizes */
    h1, .page-title {
        font-size: 20px !important;
    }
    
    h2, h3 {
        font-size: 18px !important;
    }
}



/* Recent Tickets Section (Dashboard) reuses table styles */
.recent-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    padding: 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.view-all-link {
    color: #1B5E20;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

th {
    background-color: #f8fafc;
    color: #1B5E20;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px;
    text-align: left;
    border-bottom: 2px solid #1B5E20;
}

th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

td {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 14px;
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: #f8fafc;
}



/* Status Badges */
.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.status-open {
    background-color: #fff2b3;
    color: #5f5400;
    border: 1px solid #f8e58c;
}

.status-in-progress {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.status-resolved {
    background-color: #dbeafe;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.status-closed {
    background-color: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

/* Priority Badges */
.priority-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.priority-low {
    color: #166534;
    background-color: #f0fdf4;
}

.priority-medium {
    color: #ca8a04;
    background-color: #fefce8;
}

.priority-high {
    color: #dc2626;
    background-color: #fef2f2;
}

.priority-critical {
    color: #ffffff;
    background-color: #991b1b;
}

/* ================= RESPONSIVE NAVBAR COMPONENTS ================= */
.navbar-toggler {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    margin-left: auto; /* Push to right on mobile if needed */
}

.navbar-collapse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    margin-left: 40px;
}

/* ================= RESPONSIVE ================= */

/* Tablet (768px - 1199px) */
@media (max-width: 1280px) {
    .navbar {
        flex-wrap: wrap;
        padding: 15px 24px;
    }

    .navbar-toggler {
        display: block;
        margin-left: auto;
        font-size: 20px;
        padding: 8px 12px;
    }

    .navbar-collapse {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-left: 0;
        margin-top: 15px;
        gap: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 15px;
    }

    .navbar-collapse.show {
        display: flex;
    }
    
    .nav-center {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .nav-right {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

}

@media (max-width: 1199px) {
    .stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Mobile (Below 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 4px 12px 12px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        padding: 4px;
        object-fit: contain;
    }

    .nav-left {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .navbar-toggler {
        margin-left: auto;
        margin-right: -8px;
        width: 44px;
        height: 44px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .navbar-toggler i,
    .navbar-toggler svg {
        width: 20px;
        height: 20px;
        font-size: 20px;
    }
    
    .dashboard-container {
        padding: 16px;
    }

    .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .hero-section,
    .stats-grid,
    .recent-section {
        margin-bottom: 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .stat-card {
        width: 100%;
        min-height: auto;
        padding: 12px 16px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 0;
    }

    .stat-label {
        font-size: 13px;
        color: #6b7280;
        margin-bottom: 0;
        flex: 1 1 auto;
    }

    .stat-value {
        font-size: 20px;
        font-weight: 700;
        flex: 0 0 auto;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group.half {
        width: 100%;
    }

    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .select-wrapper.small {
        width: 100%;
    }

    .section-header {
        margin-bottom: 16px;
    }

    .recent-section {
        padding: 18px;
        border-radius: 14px;
    }
    
    /* Full width modals if any */
    .modal-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    /* Stacked Table Layout */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-responsive table {
        min-width: 600px;
    }

    .table-responsive table thead {
        display: none;
    }
    
    .table-responsive table tbody tr {
        display: block;
        background: white;
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 16px;
        border: 1px solid var(--border-color);
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }
    
    .table-responsive table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid #f1f5f9;
        text-align: right;
    }
    
    .table-responsive table td:last-child {
        border-bottom: none;
    }
    
    .table-responsive table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-gray);
        text-align: left;
        margin-right: 16px;
    }
    
    /* Mobile Forms & Touch Targets */
    .form-group input,
    .form-group select,
    .form-group textarea,
    .form-control,
    .btn,
    .btn-submit,
    button,
    .action-btn {
        width: 100% !important;
        max-width: 100%;
        min-height: 44px; /* Touch target */
        padding: 10px 16px;
        border-radius: 10px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Mobile Notifications */
    .notification-dropdown {
        width: 92vw !important;
        position: fixed !important;
        top: 64px !important;
        left: 4vw !important;
        right: 4vw !important;
        max-height: 80vh;
        overflow-y: auto;
        transform: none !important;
    }
    
    /* Font Size Adjustments */
    .page-title, h1 {
        font-size: 20px !important;
    }
    
    h2, h3 {
        font-size: 18px !important;
    }
    
    /* Ensure touch targets for links */
    .nav-link, a, button {
        min-height: 44px; 
        display: inline-flex;
        align-items: center;
    }
}

/* ================= LOGIN PAGE ================= */
.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F4F6FA;
}

.login-card {
    width: 520px;
    max-width: 90%;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.login-card h2 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #1e293b;
    text-align: center;
}

.login-card form {
    background: none;
    padding: 0;
    box-shadow: none;
    max-width: 100%;
}

.login-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #475569;
    font-size: 14px;
}

.login-card input,
.login-card select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 14px;
    color: #334155;
    margin-bottom: 20px;
    background-color: #f9fafc;
}

.login-card input:focus,
.login-card select:focus {
    outline: none;
    border-color: #1B5E20;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
}

.login-card .otp-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 14px;
}

.login-card .otp-inputs .otp-digit {
    width: 52px;
    min-width: 52px;
    max-width: 52px;
    flex: 0 0 52px;
    height: 52px;
    padding: 0;
    margin-bottom: 0 !important;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    background-color: #f9fafc;
    color: #0f172a;
}

.login-card .otp-inputs .otp-digit:focus {
    outline: none;
    border-color: #1B5E20;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
}

@media (max-width: 480px) {
    .login-card .otp-inputs { gap: 8px; }
    .login-card .otp-inputs .otp-digit { width: 44px; min-width: 44px; max-width: 44px; flex-basis: 44px; height: 48px; font-size: 16px; }
}

.login-card button {
    width: 100%;
    background: linear-gradient(135deg, #1B5E20 0%, #144a1e 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
}

.login-card button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(27, 94, 32, 0.2);
}

.error {
    background: #FEE2E2;
    color: #B91C1C;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.success {
    background: #DCFCE7;
    color: #166534;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.signup-link {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.signup-link a {
    color: #1B5E20;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.signup-link a:hover {
    text-decoration: underline;
}

.back-btn {
    display: block;
    text-align: left;
    margin-bottom: 20px;
    font-size: 14px;
    text-decoration: none;
    color: #6b7280;
    transition: 0.2s ease;
}

.back-btn:hover {
    color: #1B5E20;
}

select {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    padding: 0 16px;
}

.password-note {
    font-size: 12px;
    color: #6b7280;
    display: block;
    margin-top: 6px;
}

/* Company Text in Dashboard */
.company-text {
    text-transform: none;
}

@media (max-width: 768px) {
    body {
        zoom: 0.78;
    }
}
