/* =====================================================
   Jambvant Messaging Interface Styles
   ===================================================== */

/* ===== Force site header to always be visible ===== */
body > header.site-header,
#header-placeholder > header.site-header,
.site-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
}

/* ===== Layout - Glass-Neumorphism ===== */
.messaging-page {
    min-height: 100vh;
    padding-top: 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(255, 245, 230, 0.5) 100%);
    color: var(--text-dark);
    position: relative;
}

[data-theme="dark"] .messaging-page {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(30, 30, 30, 0.95) 100%);
}

.messaging-layout {
    display: flex;
    height: calc(100vh - 120px);
    max-width: 1400px;
    margin: 120px auto 0;
    /* Glass-Neumorphism container */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow:
        10px 10px 30px var(--glass-neu-dark, rgba(0, 0, 0, 0.08)),
        -10px -10px 30px var(--glass-neu-light, rgba(255, 255, 255, 0.9)),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

[data-theme="dark"] .messaging-layout {
    background: rgba(28, 28, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        10px 10px 30px var(--glass-neu-dark, rgba(0, 0, 0, 0.4)),
        -10px -10px 30px var(--glass-neu-light, rgba(50, 50, 50, 0.4));
}

/* ===== Conversations Sidebar - Glass-Neumorphism ===== */
.conversations-sidebar {
    width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

[data-theme="dark"] .conversations-sidebar {
    background: rgba(25, 25, 25, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.conversations-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.conversations-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.unread-badge {
    /* Glass-Neumorphism badge */
    background: linear-gradient(145deg, var(--primary-purple), var(--primary-purple-dark));
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    box-shadow:
        3px 3px 8px rgba(255, 140, 0, 0.2),
        -2px -2px 6px rgba(255, 200, 100, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.conversations-search {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.search-input {
    /* Glass-Neumorphism input */
    width: 100%;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    font-size: 14px;
    outline: none;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--text-dark);
    box-shadow:
        inset 3px 3px 6px var(--glass-neu-inset-dark, rgba(0, 0, 0, 0.04)),
        inset -3px -3px 6px var(--glass-neu-inset-light, rgba(255, 255, 255, 0.5));
    transition: all 0.2s;
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow:
        inset 2px 2px 4px var(--glass-neu-inset-dark, rgba(0, 0, 0, 0.04)),
        inset -2px -2px 4px var(--glass-neu-inset-light, rgba(255, 255, 255, 0.5)),
        0 0 0 3px rgba(255, 140, 0, 0.1);
}

[data-theme="dark"] .search-input {
    background: rgba(25, 25, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.conversations-filter {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
}

.filter-btn {
    flex: 1;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-white);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: var(--bg-light);
}

.filter-btn.active {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.conversations-list {
    flex: 1;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ===== Conversation Group Headers (like Approved Connections) ===== */
.conversation-group-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 20px;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 5;
}

.conversation-group-header.seeking {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--primary-purple);
}

.conversation-group-header.offering {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #22c55e;
}

.group-header-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.group-header-content {
    flex: 1;
    min-width: 0;
}

.group-header-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.conversation-group-header.seeking .group-header-label {
    color: var(--primary-purple);
}

.conversation-group-header.offering .group-header-label {
    color: #15803d;
}

.group-header-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.group-header-count {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    flex-shrink: 0;
    white-space: nowrap;
}

.conversation-group-header.seeking .group-header-count {
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary-purple);
}

.conversation-group-header.offering .group-header-count {
    background: rgba(34, 197, 94, 0.15);
    color: #15803d;
}

.conversation-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

.conversation-item:hover {
    background: var(--bg-light);
}

.conversation-item.active {
    background: var(--primary-light, #fff3f0);
    border-left: 4px solid var(--primary-purple);
}

.conversation-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    margin-right: 12px;
}

.conversation-details {
    flex: 1;
    min-width: 0;
}

.conversation-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.conversation-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.conversation-time {
    font-size: 12px;
    color: var(--text-gray);
    flex-shrink: 0;
    margin-left: 8px;
}

.conversation-preview {
    font-size: 14px;
    color: var(--text-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.conversation-preview.unread {
    font-weight: 600;
    color: var(--text-dark);
}

.conversation-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-tier-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.tier-bronze { background: #CD7F32; color: white; }
.tier-silver { background: #C0C0C0; color: white; }
.tier-gold { background: #FFD700; color: #333; }
.tier-platinum { background: #E5E4E2; color: #333; }
.tier-diamond { background: #B9F2FF; color: #333; }

.conversation-unread-badge {
    background: var(--primary-purple);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* ===== Chat Main Area ===== */
.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.empty-state p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-white);
    position: relative;
    z-index: 1;
}

.back-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    margin-right: 12px;
    cursor: pointer;
    color: var(--text-gray);
    border-radius: 50%;
    transition: background 0.2s;
}

.back-btn:hover {
    background: var(--bg-light);
}

.chat-user-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-right: 12px;
}

.chat-user-details h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 2px 0;
}

.chat-actions {
    display: flex;
    gap: 8px;
}

.icon-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-gray);
    border-radius: 50%;
    transition: background 0.2s;
}

.icon-btn:hover {
    background: var(--bg-light);
}

/* ===== Messages Container ===== */
.messages-scroll-container {
    flex: 1;
    overflow-y: auto;
    background: var(--bg-light);
    padding: 20px;
}

.messages-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 16px;
    word-wrap: break-word;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.message-bubble.mine {
    align-self: flex-end;
    background: var(--primary-purple);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-bubble.theirs {
    align-self: flex-start;
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 4px;
}

.message-content {
    font-size: 15px;
    line-height: 1.4;
    white-space: pre-wrap;
}

.message-metadata {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 11px;
    opacity: 0.7;
}

.message-bubble.mine .message-metadata {
    color: white;
}

.message-bubble.theirs .message-metadata {
    color: var(--text-gray);
}

.read-status {
    font-size: 12px;
}

.messages-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    color: var(--text-gray);
    font-size: 14px;
}

/* ===== Chat Input ===== */
.chat-input-container {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-white);
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-input {
    width: 100%;
    min-height: 44px;
    max-height: 120px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    resize: none;
    outline: none;
    transition: border-color 0.2s;
    background: var(--bg-white);
    color: var(--text-dark);
}

.message-input:focus {
    border-color: var(--primary-purple);
}

.input-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.char-counter {
    font-size: 12px;
    color: var(--text-gray);
}

.send-btn {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.send-btn:hover:not(:disabled) {
    background: var(--primary-purple-dark);
    transform: translateY(-1px);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.voice-input-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    width: 36px;
    height: 36px;
}

.voice-input-btn:hover {
    background: var(--hover-bg);
    transform: scale(1.1);
}

.voice-input-btn.recording {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
    animation: pulse-voice 1.5s ease-in-out infinite;
}

@keyframes pulse-voice {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ===== Loading States ===== */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-purple);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-small {
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-purple);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== Dropdown Menu ===== */
.dropdown-menu {
    position: absolute;
    top: 60px;
    right: 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 200px;
}

.menu-item {
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    text-align: left;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s;
}

.menu-item:hover {
    background: var(--bg-light);
}

.menu-item.danger {
    color: #dc3545;
}

.menu-item.danger:hover {
    background: #fff5f5;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .messaging-layout {
        height: calc(100vh - 100px);
        margin: 100px auto 0;
    }

    .messaging-page {
        padding-top: 0;
    }

    .conversations-sidebar {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 10;
        transition: transform 0.3s;
    }

    .conversations-sidebar.hidden {
        transform: translateX(-100%);
    }

    .chat-main {
        width: 100%;
    }

    .back-btn {
        display: flex;
    }

    .message-bubble {
        max-width: 85%;
    }
}

@media (max-width: 480px) {
    .conversations-sidebar {
        width: 100%;
    }

    .conversations-header h1 {
        font-size: 20px;
    }

    .conversation-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .message-bubble {
        max-width: 90%;
        padding: 10px 12px;
    }

    .chat-input-container {
        padding: 12px 16px;
    }

    /* Group header responsive */
    .conversation-group-header {
        padding: 10px 16px;
        gap: 10px;
    }

    .group-header-icon {
        font-size: 16px;
    }

    .group-header-label {
        font-size: 9px;
    }

    .group-header-text {
        font-size: 12px;
        -webkit-line-clamp: 1;
    }

    .group-header-count {
        font-size: 10px;
        padding: 3px 8px;
    }
}

/* ===== Accessibility ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===== Scrollbar Styling ===== */
.conversations-list::-webkit-scrollbar,
.messages-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.conversations-list::-webkit-scrollbar-track,
.messages-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.conversations-list::-webkit-scrollbar-thumb,
.messages-scroll-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.conversations-list::-webkit-scrollbar-thumb:hover,
.messages-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--text-gray);
}

/* ===== New Message Button ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.new-message-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.new-message-btn:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.new-message-btn svg {
    stroke-width: 2.5;
}

/* ===== New Message Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

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

.modal-header {
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.modal-close-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-gray);
    border-radius: 6px;
    transition: all 0.2s;
}

.modal-close-btn:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.modal-description {
    margin: 0 0 20px;
    color: var(--text-gray);
    font-size: 14px;
}

/* ===== Available Connections List ===== */
.available-connections-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.available-connection-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.available-connection-item:hover {
    border-color: var(--primary-purple);
    background: rgba(255, 107, 53, 0.04);
    transform: translateX(4px);
}

.available-connection-item .connection-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.available-connection-item .connection-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.available-connection-item .connection-info {
    flex: 1;
    min-width: 0;
}

.available-connection-item .connection-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.available-connection-item .connection-seeking {
    font-size: 13px;
    color: var(--text-gray);
    margin: 6px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.available-connection-item .seeking-label {
    font-weight: 600;
    color: var(--primary-purple);
    display: inline-block;
    margin-right: 4px;
}

.available-connection-item .connection-tier {
    display: inline-block;
    padding: 4px 8px;
    background: var(--bg-light);
    color: var(--text-gray);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    margin-top: 4px;
}

/* ===== Seeking Context in Chat ===== */
.seeking-context-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 107, 53, 0.02));
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
}

.seeking-context-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.seeking-context-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-purple);
}

.seeking-context-toggle {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-gray);
    transition: transform 0.2s;
}

.seeking-context-toggle.expanded {
    transform: rotate(180deg);
}

.seeking-context-content {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    display: none;
}

.seeking-context-content.expanded {
    display: block;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.seeking-context-section {
    margin-bottom: 12px;
}

.seeking-context-section:last-child {
    margin-bottom: 0;
}

.seeking-context-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.seeking-context-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
}
