* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}





.container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    z-index: 2;
    animation: slideUp 0.8s ease-out;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-height: 80px;
    max-width: 200px;
    height: auto;
    width: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #374151;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

input, select, textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

input[type="date"] {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #ffffff;
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    background: transparent;
    color: #374151;
    font-size: 16px;
    width: 20px;
    height: 20px;
}

select option {
    text-transform: capitalize;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #374151;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

input::placeholder {
    color: #a0aec0;
    transition: all 0.3s ease;
}

input:focus::placeholder {
    opacity: 0.7;
    transform: translateX(5px);
}

button {
    width: 100%;
    padding: 16px 24px;
    background: #1f2937;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-transform: none;
    letter-spacing: 0.5px;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #374151;
}

button:hover::before {
    left: 100%;
}

button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(55, 65, 81, 0.3);
}

.admin-link, .auth-links, .back-link {
    text-align: center;
    margin-top: 30px;
}

.login-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #1f2937;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #374151;
    color: white;
    text-decoration: none;
}

.login-btn:hover::before {
    left: 100%;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0;
}

.auth-links a, .admin-link a, .back-link a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: inline-block;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.auth-links a:hover, .admin-link a:hover, .back-link a:hover {
    color: white;
    background: #1f2937;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    border-color: transparent;
}

/* Dashboard Styles */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.dashboard-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: #374151;
    border-radius: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

#adminName, #receptionistName, #saName {
    font-weight: 600;
    color: #374151;
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 14px;
}

#logoutBtn, .logout-button {
    width: auto !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
    background: #dc2626 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    overflow: visible !important;
    cursor: pointer !important;
    border: none !important;
    color: white !important;
    margin-top: 0 !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

#logoutBtn::before, .logout-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

#logoutBtn:hover, .logout-button:hover {
    background: #b91c1c !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-1px) !important;
}

#logoutBtn:hover::before, .logout-button:hover::before {
    left: 100%;
}

#logoutBtn:active, .logout-button:active {
    transform: translateY(0) !important;
}

.search-section {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-section input, .search-section select {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
}

.visitors-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: #1f2937;
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.stat-card:hover::before {
    top: -20%;
    right: -20%;
}

.stat-card h3 {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card span {
    font-size: 2.5em;
    font-weight: bold;
    display: block;
    position: relative;
    z-index: 1;
}

.visitor-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.visitor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.visitor-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: #9ca3af;
}

.visitor-card:hover::before {
    left: 100%;
}

.visitor-card h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.visitor-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    font-size: 14px;
    color: #4a5568;
    position: relative;
    z-index: 1;
}

.visitor-info span {
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.visitor-info span strong {
    color: #2d3748;
    font-weight: 600;
}

/* Visitor Details Page */
.visitor-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.back-btn {
    width: auto;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 6px;
    background: #6b7280;
}

.visitor-details {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.detail-row {
    display: flex;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.detail-row:hover {
    background: #f9fafb;
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

.detail-label {
    font-weight: 600;
    color: #4a5568;
    width: 180px;
    flex-shrink: 0;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.detail-value {
    color: #2d3748;
    flex: 1;
    font-weight: 500;
}

.visitor-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
}

.btn-secondary {
    background: #6b7280;
}

.btn-danger {
    background: #dc2626;
}

.visitor-actions button {
    width: auto;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.visitor-actions button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.visitor-actions button:hover {
    transform: translateY(-2px);
}

.visitor-actions button:hover::before {
    left: 100%;
}

.btn-secondary {
    background: #6b7280;
}

.btn-secondary:hover {
    background: #4b5563;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-danger {
    background: #dc2626;
}

.btn-danger:hover {
    background: #b91c1c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Floating Elements */


/* Form Sections */
.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    color: #374151;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
    font-size: 1.2em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row-three {
    grid-template-columns: 1fr 1fr 1fr;
}



.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 12px;
    transform: scale(1.2);
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #4a5568;
}

.radio-label input[type="radio"] {
    width: auto;
    margin-right: 8px;
    transform: scale(1.2);
}



/* Dashboard Container */
.dashboard-container {
    max-width: 1200px;
}

/* Filters Section */
.filters-section {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group input,
.filter-group select {
    margin: 0;
}

/* Table Styles */
.table-container {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.visitors-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.visitors-table th {
    background: #1f2937;
    color: white;
    padding: 12px 10px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visitors-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    vertical-align: middle;
}

.visitors-table tr:hover {
    background: #f9fafb;
}

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

/* Status Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-registered {
    background: #e0f2fe;
    color: #0277bd;
}

.status-completed {
    background: #e8f5e8;
    color: #2e7d32;
}

/* Table Action Buttons */
.btn-view, .btn-edit {
    padding: 4px 8px;
    font-size: 11px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view {
    background: #f9fafb;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-view:hover {
    background: #374151;
    color: white;
}

.btn-edit {
    background: #f9fafb;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-edit:hover {
    background: #374151;
    color: white;
}

.btn-approve, .btn-reject {
    padding: 4px 8px;
    font-size: 11px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-approve {
    background: #10b981;
    color: white;
}

.btn-approve:hover {
    background: #059669;
}

.btn-reject {
    background: #ef4444;
    color: white;
}

.btn-reject:hover {
    background: #dc2626;
}

.action-disabled {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 500;
}

.status-pending {
    background: #fef3c7;
    color: #d97706;
}

.status-approved {
    background: #d1fae5;
    color: #059669;
}

.status-rejected {
    background: #fee2e2;
    color: #dc2626;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #6b7280;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    width: 100%;
}

.language-input {
    width: 100%;
    min-height: 50px;
    padding: 12px 40px 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.language-input:hover {
    border-color: #374151;
}

.selected-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
}

.selected-languages .placeholder {
    color: #9ca3af;
    font-size: 16px;
}

.language-tag {
    background: #374151;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.language-tag .remove {
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.language-tag .remove:hover {
    color: #ef4444;
}

.dropdown-arrow {
    position: absolute;
    right: 16px;
    color: #6b7280;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.language-input.open .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: white;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow: hidden;
}

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

.language-search {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.language-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
}

.language-options {
    max-height: 240px;
    overflow-y: auto;
    padding: 8px;
}

.language-options label {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s ease;
    font-weight: normal;
    text-transform: none;
    margin: 0;
}

.language-options label:hover {
    background: #f3f4f6;
}

.language-options label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.language-options label input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Hamburger Menu */
.hamburger-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.hamburger-btn {
    width: 50px;
    height: 50px;
    background: #1f2937;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: #374151;
    transform: scale(1.05);
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
    overflow: hidden;
}

.menu-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #1f2937;
    text-decoration: none;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.menu-dropdown a:last-child {
    border-bottom: none;
}

.menu-dropdown a:hover {
    background: #f3f4f6;
    color: #1f2937;
}

/* Responsive Design */
.filters-section {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive Table */
@media (max-width: 1024px) {
    .filters-section {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .visitors-table {
        font-size: 12px;
    }
    
    .visitors-table th,
    .visitors-table td {
        padding: 8px 6px;
    }
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 25px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .form-row, .form-row-three {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .dashboard-container {
        padding: 15px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .filters-section {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .visitors-table {
        min-width: 600px;
    }
    
    .search-section {
        flex-direction: column;
        padding: 20px;
    }
    
    .auth-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .visitor-actions {
        flex-direction: column;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .detail-label {
        width: auto;
    }
    
    .visitors-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 25px;
    }
}

/* Pagination Styles */
.pagination-container {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
}

#pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#pagination button {
    width: auto;
    padding: 8px 16px;
    margin: 0;
    font-size: 14px;
}

#pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#pagination span {
    font-weight: 600;
    color: #374151;
    padding: 8px 16px;
}

/* Force clear button to be clickable */
#clearFilters {
    background: #6b7280 !important;
    color: white !important;
    pointer-events: auto !important;
    z-index: 99999 !important;
    position: relative !important;
    cursor: pointer !important;
    padding: 12px 20px !important;
}

/* Date Picker Styles */
.date-picker-container {
    position: relative;
    z-index: 1001;
}

.date-picker {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    width: 280px;
    padding: 10px;
}

.date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.date-picker-header button {
    width: 30px;
    height: 30px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.date-picker-header button:hover {
    background: #374151;
    color: white;
}

.date-picker-header span {
    font-weight: 600;
    color: #374151;
}

.date-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.date-picker-day {
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    color: #374151 !important;
    font-weight: 500;
}

.date-picker-day:hover {
    background: #f3f4f6 !important;
    color: #1f2937 !important;
}

.date-picker-day.selected {
    background: #374151 !important;
    color: white !important;
}

.date-picker-day.other-month {
    color: #9ca3af !important;
}

.date-picker-day.today {
    background: #e5e7eb !important;
    color: #1f2937 !important;
    font-weight: 600;
}