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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.auth-container {
    max-width: 400px;
    margin: 100px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
}

.btn:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #545b62;
}

.text-center {
    text-align: center;
}

.link {
    color: #007bff;
    text-decoration: none;
}

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

.error {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Mobile-first responsive design */
.main-layout {
    position: relative;
    min-height: 100vh;
}

/* Menu toggle button - only visible on mobile */
.menu-toggle {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    background: #343a40;
    border: none;
    border-radius: 0 0 4px 0;
    padding: 15px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 50px;
    height: 50px;
}

.hamburger {
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background-color: #343a40;
    color: white;
    padding: 20px;
    z-index: 1000;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

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

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    display: none;
}

/* Content area */
.content {
    margin-left: 250px;
    padding: 20px;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

/* Overlay for mobile menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar.open .close-menu {
        display: block;
    }
    
    .main-layout:has(.sidebar.open) .menu-toggle {
        display: none;
    }
    
    .content {
        margin-left: 0;
        margin-top: 50px;
        padding: 0;
    }
    
    .overlay.show {
        display: block;
    }
    
    /* Hide menu on mobile when content is shown */
    .content.menu-hidden {
        display: block;
    }
    
    .sidebar.menu-hidden {
        transform: translateX(-100%);
    }
    
    /* Mobile chat layout - improved for keyboard visibility */
    .chat-container {
        height: calc(100vh - 160px);
        display: flex;
        flex-direction: column;
    }
    
    .chat-messages {
        flex: 1;
        margin-bottom: 0;
        padding-bottom: 20px;
        overflow-y: auto;
        scroll-behavior: smooth;
    }
    
    .chat-input-container {
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e9ecef;
        padding: 15px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
        margin-top: auto;
    }
    
    .content-area {
        padding-bottom: 0;
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .sidebar {
        width: 200px;
    }
    
    .title-area {
        margin-left: 200px;
    }
    
    .content {
        margin-left: 200px;
    }
}

/* Desktop styles - keep existing behavior */
@media (min-width: 1025px) {
    .main-layout {
        display: flex;
        flex-direction: column;
    }
    
    .title-area {
        margin-left: 250px;
        order: 0;
    }
    
    .sidebar {
        position: fixed;
        height: 100vh;
        order: 1;
    }
    
    .content {
        margin-left: 250px;
        margin-top: 0;
        order: 2;
    }
}

.menu-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.menu-item:hover {
    background-color: #495057;
}

.user-info {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    color: white;
}

.user-info-name {
    font-size: 12px;
    margin-bottom: 5px;
    word-break: break-word;
}

.user-info-email {
    font-size: 12px;
    color: #adb5bd;
    word-break: break-word;
}

.title-area {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.title-area h1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-area {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

/* Mobile content area adjustments */
@media (max-width: 768px) {
    .title-area {
        position: fixed;
        top: 0;
        left: 50px;
        right: 0;
        margin: 0;
        padding: 15px;
        border-radius: 0;
        z-index: 900;
        height: 50px;
        display: flex;
        align-items: center;
    }

    .title-area h1 {
        font-size: 1rem;
    }

    .content-area {
        margin: 0;
        padding: 15px;
        border-radius: 0;
    }
}

/* Chat Styles */
.chat-container {
    display: flex;
    flex-direction: column;
    height: 600px;
    max-height: 80vh;
}


.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 0 10px;
    margin-bottom: 15px;
    scroll-behavior: smooth;
}

.message {
    margin-bottom: 15px;
    display: flex;
}

.current-user-message {
    justify-content: flex-end;
}

.other-message {
    justify-content: flex-start;
}

.message-content {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
}

.current-user-message .message-content {
    background-color: #007bff;
    color: white;
}

.other-message .message-content {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
}

.message-sender {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.8;
}

.message-text {
    word-wrap: break-word;
    line-height: 1.4;
}

.message-time {
    font-size: 11px;
    margin-top: 4px;
    opacity: 0.7;
}

.current-user-message .message-time {
    text-align: right;
}

.other-message .message-time {
    text-align: left;
}

.chat-input-container {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.chat-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

#message-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 20px;
    resize: none;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    max-height: 120px;
    min-height: 44px;
}

#message-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

#send-button {
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

#send-button:hover:not(:disabled) {
    background-color: #0056b3;
}

#send-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.chat-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: #6c757d;
}

.placeholder-content {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

/* Survey Styles */
.survey-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.survey-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

#questionBox {
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.badge.unearned {
    opacity: 0.3;
    filter: grayscale(100%);
}

.badge.earned {
    opacity: 1;
    filter: grayscale(0%);
    animation: badgeEarn 0.5s ease;
}

@keyframes badgeEarn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.badge-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
}

.badge.earned .badge-label {
    color: #333;
}

.progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    height: 8px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress-fill {
    background: #4CAF50;
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.radio-option:hover {
    border-color: #007bff;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #007bff;
}

.scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.score-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #007bff;
}

/* Results Table Styles */
.results-container {
    max-width: 800px;
    margin: 0 auto;
}

.results-container h2 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.5rem;
}

.results-container p {
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.results-table thead {
    background: #007bff;
    color: white;
}

.results-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.results-table tbody tr:hover {
    background-color: #f8f9fa;
}

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

.results-table td:first-child {
    font-weight: 500;
    color: #495057;
}

.results-table td:last-child {
    font-weight: 600;
    color: #007bff;
    text-align: right;
}

.result-row-level-1 {
    background-color: #d0e3f0; /* soft blue */
}

.result-row-level-2 {
    background-color: #e8f1f8; /* very light blue */
}

.result-row-level-3 {
    /* no background */
}

.result-row-level-4 {
    background-color: #fff9e0; /* very light yellow */
}

.result-row-level-5 {
    background-color: #fff3b0; /* soft yellow */
}

/* Chats List Styles */
.chats-container {
    max-width: 900px;
    margin: 0 auto;
}

.chats-container h2 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
}

.chat-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.chat-item:hover {
    border-color: #007bff;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.12);
    transform: translateY(-1px);
}

.chat-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.chat-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-item-badge {
    background: #007bff;
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: capitalize;
    flex-shrink: 0;
}

.chat-item-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

.chat-item-bot {
    color: #6c757d;
    margin: 0;
}

.chat-item-users {
    color: #495057;
    margin: 0;
}

.invited-user-badge {
    background: #e9ecef;
    color: #495057;
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
}

.chat-item-preview {
    color: #6c757d;
    font-size: 0.8rem;
    line-height: 1.3;
    margin-top: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-item-preview.empty {
    font-style: italic;
    color: #adb5bd;
}

.chat-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.4rem;
}

.chat-item-time {
    font-size: 0.7rem;
    color: #adb5bd;
}

.chat-item-owner-badge {
    background: #28a745;
    color: white;
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 500;
}

.no-chats {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.no-chats p {
    margin: 0.5rem 0;
}

.no-chats p:first-child {
    font-size: 1.1rem;
    font-weight: 500;
    color: #495057;
}

@media (max-width: 768px) {
    .chat-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .chat-item-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Create Chat Room Styles */
.create-chat-section {
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

.create-chat-toggle {
    width: 100%;
    padding: 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.create-chat-toggle:hover {
    background: #0056b3;
}

.create-chat-toggle.active {
    background: #6c757d;
    border-radius: 8px 8px 0 0;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.create-chat-toggle.active .toggle-icon {
    transform: rotate(45deg);
}

.create-chat-form {
    background: white;
    border: 1px solid #e9ecef;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.create-chat-form .form-group {
    margin-bottom: 1.5rem;
}

.create-chat-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.create-chat-form input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
}

.create-chat-form input[type="text"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.help-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0.25rem 0 0.75rem 0;
}

.participant-group {
    margin-bottom: 1rem;
}

.participant-group-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bot-selection,
.user-selection {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 0.75rem;
}

.selection-option {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.selection-option:hover {
    background: #f8f9fa;
    border-color: #007bff;
}

.selection-option input[type="radio"],
.selection-option input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.selection-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.selection-name {
    font-weight: 500;
    color: #333;
}

.selection-type {
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: capitalize;
}

.no-items,
.loading-text,
.error-text {
    text-align: center;
    padding: 1rem;
    color: #6c757d;
    font-style: italic;
}

.error-text {
    color: #dc3545;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.form-actions .btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}

.chat-item-badge-group {
    background: #28a745;
}

/* OAuth Button Styles */
.oauth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #6c757d;
}

.oauth-divider::before,
.oauth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.oauth-divider span {
    padding: 0 10px;
    font-size: 14px;
}

.btn-google {
    width: 100%;
    padding: 12px;
    background-color: #ffffff;
    color: #3c4043;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.btn-google:hover {
    background-color: #f8f9fa;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.btn-google:active {
    background-color: #f1f3f4;
}

.google-icon {
    width: 18px;
    height: 18px;
}

.oauth-buttons {
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Options Styles */
.options-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.options-section h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.option-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Inspections Styles */
.inspection-item {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.inspection-header {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.inspection-header:hover {
    background-color: #f8f9fa;
}

.inspection-item.expanded .inspection-header {
    background-color: #e9ecef;
}

.inspection-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.inspection-type {
    font-weight: bold;
    color: #007bff;
    font-size: 0.85rem;
}

.inspection-name {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.inspection-user {
    color: #6c757d;
    font-size: 0.85rem;
}

.inspection-date {
    color: #6c757d;
    font-size: 0.75rem;
}

.inspection-toggle {
    font-size: 0.8rem;
    color: #6c757d;
    transition: transform 0.3s;
}

.inspection-item.expanded .inspection-toggle {
    transform: rotate(180deg);
}

.inspection-messages {
    padding: 1rem;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    max-height: 500px;
    overflow-y: auto;
}

.inspection-messages-loading {
    text-align: center;
    color: #6c757d;
    padding: 1rem;
}

.inspection-message {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.inspection-message:last-child {
    margin-bottom: 0;
}

.inspection-message.bot {
    border-left: 3px solid #007bff;
}

.inspection-message.user {
    border-left: 3px solid #28a745;
}

.inspection-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.inspection-message-sender {
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
}

.inspection-message-time {
    color: #6c757d;
    font-size: 0.75rem;
}

.inspection-message-content {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.no-messages {
    text-align: center;
    color: #6c757d;
    padding: 1rem;
    font-style: italic;
}

.error-text {
    color: #dc3545;
    text-align: center;
    padding: 1rem;
}