/* Import Roboto font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary-color: #6F4E37; /* Coffee brown */
    --secondary-color: #C4A484; /* Light coffee */
    --accent-color: #D2B48C; /* Tan */
    --dark-color: #3E2723; /* Dark brown */
    --light-color: #F5F5F5;
    --sidebar-width: 280px;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Login Page Styles */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    animation: fadeIn 0.5s ease-in-out;
}

.login-brand {
    text-align: center;
    margin-bottom: 30px;
}

.login-brand .logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    object-fit: cover;
}

.login-brand h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.login-form .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.login-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(111, 78, 55, 0.25);
}

.login-form .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.login-form .input-group .form-control {
    border-left: none;
}

.login-form .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
}

.login-form .btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

/* Admin Dashboard Styles */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: var(--sidebar-width);
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    height: 100%;
    transition: all 0.3s;
    z-index: 1000;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-header h3 {
    margin: 0;
    margin-left: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.sidebar-logo {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.second-logo {
    width: auto;
    height: 40px;
    opacity: 0.9;
    object-fit: contain;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.sidebar-menu li {
    padding: 12px 20px;
    transition: all 0.3s;
}

.sidebar-menu li a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.sidebar-menu li a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.sidebar-menu li:hover {
    background-color: #f8f9fa;
}

.sidebar-menu li.active {
    background-color: rgba(111, 78, 55, 0.1);
    border-left: 3px solid var(--primary-color);
}

.sidebar-menu li.active a {
    color: var(--primary-color);
    font-weight: 500;
}

.sidebar-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #eee;
}

.logout-btn {
    display: flex;
    align-items: center;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 14px;
}

.logout-btn:hover {
    color: var(--primary-color);
}

.logout-btn i {
    margin-right: 8px;
    font-size: 14px;
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    background-color: #f8f9fa;
    min-height: 100vh;
}

.main-header {
    background: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header h1 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--primary-color);
}

.user-info {
    display: flex;
    align-items: center;
}

.user-info span {
    margin-right: 15px;
    color: #555;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.content-wrapper {
    padding: 20px;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 20px;
    border-radius: 10px 10px 0 0 !important;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--primary-color);
}

.card-subtitle {
    font-size: 14px;
    color: #777;
    margin: 5px 0 0;
}

.card-body {
    padding: 20px;
}

.form-label {
    font-weight: 500;
    color: #555;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.table {
    color: #333;
}

.table th {
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
}

.table-hover tbody tr:hover {
    background-color: rgba(111, 78, 55, 0.05);
}

.badge {
    padding: 6px 10px;
    font-weight: 500;
    border-radius: 20px;
}

/* User Dashboard Specific Styles */
.user-container {
    display: flex;
    min-height: 100vh;
}

.stat-card {
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
}

.stat-card h3 {
    font-size: 28px;
    margin: 10px 0;
    color: var(--primary-color);
}

.stat-card p {
    color: #666;
    margin: 0;
}

/* Modal Styles */
.action-buttons .btn {
    margin-right: 5px;
    margin-bottom: 5px;
}
.modal-confirm {
    color: #636363;
}
.modal-confirm .modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none;
}
.modal-confirm .modal-header {
    border-bottom: none;
    position: relative;
}
.modal-confirm h4 {
    text-align: center;
    font-size: 26px;
    margin: 30px 0 -15px;
}
.modal-confirm .modal-body {
    color: #999;
    text-align: center;
}
.modal-confirm .modal-footer {
    border: none;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
}
.modal-confirm .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    z-index: 9;
    text-align: center;
    border: 3px solid #f15e5e;
}
.modal-confirm .icon-box i {
    color: #f15e5e;
    font-size: 46px;
    display: inline-block;
    margin-top: 13px;
}

/* Button Styles */
.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    background-color: #ffc107;
    color: #000;
}

/* Table Action Buttons */
.table td .btn {
    margin-right: 5px;
    padding: 5px 10px;
}

/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #6F4E37;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: #6F4E37;
    font-size: 18px;
    font-weight: 500;
}

/* Review Modal Styles */
.review-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.review-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.review-modal-header {
    background: linear-gradient(135deg, #6F4E37, #8B4513);
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-review-modal {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-review-modal:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.review-modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.review-modal-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background-color: #f8f9fa;
    border-radius: 0 0 10px 10px;
}

.review-form-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #6F4E37;
}

.review-form-header {
    font-weight: 600;
    color: #6F4E37;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.review-form-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.review-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.review-field-label {
    font-weight: 500;
    color: #495057;
    font-size: 0.9rem;
}

.review-field-value {
    color: #6F4E37;
    font-weight: 600;
    text-align: right;
    max-width: 150px;
    word-wrap: break-word;
}

.review-field-value .empty {
    color: #6c757d;
    font-style: italic;
    font-weight: normal;
}

/* Auto-save Status Styles */
.auto-save-status {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.status-info {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #495057;
}

.status-active {
    color: #28a745;
    font-weight: 600;
    text-transform: uppercase;
}

.status-controls {
    display: flex;
    gap: 10px;
}

.status-controls .btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Review Modal Mobile Responsive */
@media (max-width: 768px) {
    .review-modal-content {
        margin: 2% auto;
        width: 95%;
        max-width: none;
        max-height: 90vh;
        border-radius: 8px;
    }

    .review-modal-header {
        padding: 15px;
        border-radius: 8px 8px 0 0;
    }

    .review-modal-header h3 {
        font-size: 1.2rem;
    }

    .close-review-modal {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }

    .review-modal-body {
        padding: 15px;
        max-height: 70vh;
    }

    .review-modal-footer {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .review-modal-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .review-form-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .review-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .review-field-value {
        max-width: none;
        text-align: left;
        word-break: break-word;
    }

    .review-summary-section {
        padding: 10px;
    }

    .summary-stats {
        flex-direction: column;
        gap: 10px;
    }

    .summary-form-item {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .review-modal-content {
        margin: 1% auto;
        width: 98%;
        max-height: 95vh;
        border-radius: 6px;
    }

    .review-modal-header {
        padding: 12px;
        border-radius: 6px 6px 0 0;
    }

    .review-modal-header h3 {
        font-size: 1.1rem;
    }

    .close-review-modal {
        width: 26px;
        height: 26px;
        font-size: 18px;
    }

    .review-modal-body {
        padding: 12px;
        max-height: 75vh;
    }

    .review-modal-footer {
        padding: 12px;
    }

    .review-form-section {
        padding: 12px;
        margin-bottom: 12px;
    }

    .review-form-header {
        font-size: 1rem;
    }

    .review-field {
        padding: 6px 10px;
    }

    .review-field-label {
        font-size: 0.85rem;
    }

    .review-field-value {
        font-size: 0.9rem;
    }

    .summary-form-item {
        padding: 8px;
    }

    .summary-form-item .form-number,
    .summary-form-item .sample-id {
        font-size: 0.9rem;
    }

    .status-badge {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 0;
        overflow: hidden;
    }
    
    .main-content {
        margin-left: 0;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table td .btn {
        margin-bottom: 5px;
    }

    .stat-card {
        margin-bottom: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .user-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        order: 1;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .sidebar-header {
        padding: 15px 0;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        border: none;
        flex: 0 0 auto;
    }
    
    .sidebar-header h3 {
        display: none;
    }
    
    .sidebar-logo {
        width: 30px;
        height: 30px;
    }
    
    .sidebar-menu {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        border: none;
        flex: 1;
        justify-content: center;
    }
    
    .sidebar-menu li {
        padding: 15px 20px;
        margin: 0;
        border: none;
    }
    
    .sidebar-menu li.active {
        border-left: none;
        border-bottom: 3px solid var(--primary-color);
    }
    
    .sidebar-footer {
        position: relative;
        bottom: auto;
        width: auto;
        padding: 15px 0;
        border: none;
        text-align: center;
        flex: 0 0 auto;
    }
    
    .main-content {
        margin-left: 0;
        order: 2;
    }
    
    .main-header {
        padding: 15px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
    .user-info {
        align-self: auto;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .form-counter {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .auto-save-status {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .status-controls {
        justify-content: center;
    }
    
    .form-container {
        padding: 15px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .form-section h3 {
        font-size: 18px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        padding: 0 15px;
        flex-wrap: nowrap;
    }
    
    .sidebar-header {
        padding: 12px 0;
        flex: 0 0 auto;
    }
    
    .sidebar-header h3 {
        display: none;
    }
    
    .sidebar-logo {
        width: 25px;
        height: 25px;
    }
    
    .sidebar-menu {
        flex: 1;
        justify-content: center;
    }
    
    .sidebar-menu li {
        padding: 12px 15px;
    }
    
    .sidebar-menu li a {
        font-size: 13px;
    }
    
    .sidebar-menu li a i {
        margin-right: 6px;
        width: 14px;
        font-size: 12px;
    }
    
    .sidebar-footer {
        padding: 12px 0;
        flex: 0 0 auto;
    }
    
    .logout-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .logout-btn i {
        margin-right: 6px;
        font-size: 12px;
    }
    
    .main-header {
        padding: 12px 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .form-container {
        padding: 10px;
    }
    
    .form-section {
        padding: 10px;
    }
    
    .progress-indicator {
        padding: 15px;
        margin: 15px 0;
    }
    
    .progress-text {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .progress-bar {
        height: 8px;
    }
    
    .alert {
        margin: 10px 0;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .btn-sm {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .checkbox-group {
        gap: 10px;
    }
    
    .checkbox-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .intensity-scale {
        gap: 8px;
    }
    
    .intensity-scale span {
        font-size: 12px;
        padding: 6px 8px;
    }
}

/* Accessibility and Readability Improvements */
* {
    box-sizing: border-box;
}

/* Ensure minimum font sizes for readability */
input, select, textarea, button {
    font-size: 16px; /* Prevents zoom on iOS */
}

/* Improve focus states for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Better contrast for form labels */
.form-label,
label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 16px;
}

/* Improve button readability */
.btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}

/* Better table readability */
.table th,
.table td {
    font-size: 15px;
    line-height: 1.5;
}

/* Improve sidebar text readability */
.sidebar-menu li a {
    font-size: 16px;
    font-weight: 500;
}

.sidebar-header h3 {
    font-size: 18px;
    font-weight: 600;
}

/* Better form section headers */
.form-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

/* Improve checkbox and radio button labels */
.checkbox-item,
.radio-item {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/* Better intensity scale labels */
.intensity-scale span {
    font-size: 14px;
    font-weight: 500;
}

/* Improve alert readability */
.alert {
    font-size: 16px;
    line-height: 1.5;
}

/* Better progress text */
.progress-text {
    font-size: 16px;
    font-weight: 500;
}

/* Mobile Readability Improvements */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .main-header h1 {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .sidebar-header h3 {
        font-size: 16px;
        font-weight: 600;
    }
    
    .sidebar-menu li a {
        font-size: 15px;
        font-weight: 500;
    }
    
    .form-section h3 {
        font-size: 18px;
        font-weight: 600;
    }
    
    .form-label,
    label {
        font-size: 15px;
        font-weight: 500;
    }
    
    .btn {
        font-size: 15px;
        font-weight: 500;
    }
    
    .alert {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .progress-text {
        font-size: 15px;
        font-weight: 500;
    }
    
    .checkbox-item,
    .radio-item {
        font-size: 14px;
        font-weight: 500;
    }
    
    .intensity-scale span {
        font-size: 13px;
        font-weight: 500;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .main-header h1 {
        font-size: 17px;
        font-weight: 600;
    }
    
    .sidebar-header h3 {
        font-size: 15px;
        font-weight: 600;
    }
    
    .sidebar-menu li a {
        font-size: 14px;
        font-weight: 500;
    }
    
    .form-section h3 {
        font-size: 17px;
        font-weight: 600;
    }
    
    .form-label,
    label {
        font-size: 14px;
        font-weight: 500;
    }
    
    .btn {
        font-size: 14px;
        font-weight: 500;
    }
    
    .alert {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .progress-text {
        font-size: 14px;
        font-weight: 500;
    }
    
    .checkbox-item,
    .radio-item {
        font-size: 13px;
        font-weight: 500;
    }
    
    .intensity-scale span {
        font-size: 12px;
        font-weight: 500;
    }

    .quality-scale-header{
        font-size: 10px;
    }

    /* Mobile responsive sticky header */
    .sticky-form-header {
        padding: 8px 12px;
        flex-direction: row;
        gap: 8px;
        min-height: auto;
    }

    .sticky-form-info {
        flex-direction: row;
        gap: 8px;
        width: 100%;
        flex-wrap: wrap;
    }

    .sticky-form-item {
        font-size: 11px;
        gap: 3px;
        justify-content: flex-start;
        width: auto;
        flex-shrink: 0;
    }

    .sticky-form-item i {
        display: none;
    }

    .sticky-form-item strong {
        font-size: 10px;
        min-width: auto;
    }

    .sticky-form-item span {
        font-size: 10px;
        font-weight: 600;
    }

    .sticky-close-btn {
        position: absolute;
        top: 4px;
        right: 8px;
        width: 24px;
        height: 24px;
        font-size: 10px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Sticky Form Header Styles */
.sticky-form-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 12px 20px;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid #3498db;
    transition: all 0.3s ease;
    min-height: 60px;
}

.sticky-form-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.sticky-form-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.sticky-form-item i {
    color: #3498db;
    font-size: 14px;
    min-width: 16px;
}

.sticky-form-item strong {
    color: #ecf0f1;
    font-weight: 600;
}

.sticky-form-item span {
    color: #f39c12;
    font-weight: 700;
    font-size: 15px;
}

.sticky-close-btn {
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sticky-close-btn:hover {
    background: #e74c3c;
    transform: scale(1.1);
}