/**
 * User Engagement CSS - AvisV
 * Routing Cards, Partner Calculator, Chatbot
 */

/* ============================================
   USER ROUTING CARDS
   ============================================ */
.routing-card {
    transition: all 0.3s ease;
}

.routing-card-inner {
    background: var(--surface-color);
    border: 1px solid rgba(13, 131, 253, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.routing-card-inner:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 131, 253, 0.15);
}

.routing-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.routing-icon i {
    font-size: 28px;
    color: var(--accent-color);
}

.routing-card-inner:hover .routing-icon {
    background: linear-gradient(135deg, #0d83fd, #0ea5e9);
}

.routing-card-inner:hover .routing-icon i {
    color: white;
}

.routing-card-inner h4 {
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.routing-card-inner p {
    color: var(--default-color);
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.routing-arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(13, 131, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.routing-arrow i {
    color: var(--accent-color);
}

.routing-card-inner:hover .routing-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Button Outline Primary */
.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-primary:hover {
    background: var(--accent-color);
    color: white;
}

/* ============================================
   PARTNER EARNINGS CALCULATOR
   ============================================ */
.roi-calculator-section {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #0d1f3c 100%);
    position: relative;
    overflow: hidden;
}

.roi-calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d83fd' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.roi-calculator {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.roi-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d83fd, #0ea5e9, #0d83fd);
}

.roi-calculator h3 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.roi-calculator .subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.roi-input-group {
    margin-bottom: 1.5rem;
}

.roi-input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.roi-input-group input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.roi-input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d83fd, #0ea5e9);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(13, 131, 253, 0.5);
    transition: transform 0.2s ease;
}

.roi-input-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.roi-value-display {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.roi-value-current {
    background: rgba(13, 131, 253, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    color: #0d83fd;
    font-weight: 600;
}

.roi-results {
    background: rgba(13, 131, 253, 0.1);
    border: 1px solid rgba(13, 131, 253, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-top: 2rem;
}

.roi-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-result-item:last-child {
    border-bottom: none;
}

.roi-result-item .label {
    color: rgba(255, 255, 255, 0.7);
}

.roi-result-item .value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0d83fd, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-result-item.highlight {
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.2), rgba(14, 165, 233, 0.2));
    margin: 0 -24px;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
}

.roi-result-item.highlight .value {
    font-size: 2rem;
}

.roi-cta {
    margin-top: 2rem;
    text-align: center;
}

.roi-cta .btn {
    background: linear-gradient(135deg, #0d83fd, #0ea5e9);
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(13, 131, 253, 0.4);
}

.roi-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13, 131, 253, 0.5);
}

/* Projection Table */
.projection-table-wrapper {
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
}

.projection-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

.projection-table th {
    background: rgba(13, 131, 253, 0.3);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.projection-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.projection-table tr:hover {
    background: rgba(13, 131, 253, 0.1);
}

.projection-table .highlight-row {
    background: rgba(13, 131, 253, 0.2);
    font-weight: bold;
}

.projection-table .highlight-row td {
    border-bottom: none;
}

.projection-table .cumulative {
    color: #4ade80;
    font-weight: 700;
}

/* Calculator Header */
.calculator-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.calculator-header .subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* ROI Result Item Grid Fix */
.roi-results .roi-result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    border: none;
}

.roi-results .roi-result-item .value {
    font-size: 1.25rem;
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: linear-gradient(135deg, #0d1f3c 0%, #1a365d 100%);
    border-radius: 24px;
    padding: 48px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.exit-popup-overlay.show .exit-popup {
    transform: scale(1) translateY(0);
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.exit-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d83fd, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
}

.exit-popup h3 {
    color: white;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 12px;
}

.exit-popup p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 24px;
}

.exit-popup-offer {
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.2), rgba(14, 165, 233, 0.2));
    border: 1px dashed rgba(13, 131, 253, 0.5);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.exit-popup-offer .discount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0d83fd, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exit-popup-offer .text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.exit-popup-form input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.exit-popup-form input:focus {
    outline: none;
    border-color: #0d83fd;
    box-shadow: 0 0 0 3px rgba(13, 131, 253, 0.2);
}

.exit-popup-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.exit-popup-form button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0d83fd, #0ea5e9);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-popup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 131, 253, 0.4);
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-ticker {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 320px;
}

.social-proof-ticker.show {
    transform: translateX(0);
}

.social-proof-ticker .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d83fd, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.social-proof-ticker .content {
    flex: 1;
}

.social-proof-ticker .name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.social-proof-ticker .action {
    color: #666;
    font-size: 0.85rem;
}

.social-proof-ticker .time {
    color: #0d83fd;
    font-size: 0.8rem;
    font-weight: 500;
}

.social-proof-ticker .close-ticker {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #1a1a2e;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   AI CHATBOT
   ============================================ */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 99999;
}

.chatbot-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d83fd, #0ea5e9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(13, 131, 253, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(13, 131, 253, 0.5);
}

.chatbot-toggle i {
    font-size: 28px;
    color: white;
}

.chatbot-toggle .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ec4899;
    border-radius: 50%;
    color: white;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0) translateY(20px);
    transform-origin: bottom right;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chatbot-window.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    background: linear-gradient(135deg, #0d83fd, #0ea5e9);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-header .avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-header .avatar i {
    font-size: 22px;
    color: white;
}

.chatbot-header .info h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.chatbot-header .info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.85rem;
}

.chatbot-header .status {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    margin-left: auto;
    box-shadow: 0 0 10px #22c55e;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-message.bot {
    background: #f3f4f6;
    color: #1a1a2e;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    background: linear-gradient(135deg, #0d83fd, #0ea5e9);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 16px;
}

.quick-reply-btn {
    background: rgba(13, 131, 253, 0.1);
    border: 1px solid #0d83fd;
    color: #0d83fd;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-reply-btn:hover {
    background: #0d83fd;
    color: white;
}

.chatbot-input {
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 12px;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-color: #0d83fd;
}

.chatbot-input button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d83fd, #0ea5e9);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    transform: scale(1.1);
}

/* ============================================
   CALENDLY EMBED SECTION
   ============================================ */
.calendly-section {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.calendly-section .section-title h2 {
    font-size: 2.5rem;
}

.calendly-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 700px;
}

.calendly-inline-widget {
    min-height: 700px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: linear-gradient(90deg, #0d83fd, #0ea5e9, #0d83fd);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 1000;
}

.announcement-bar a {
    color: white;
    text-decoration: underline;
    margin-left: 8px;
}

.announcement-bar .close-announcement {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.announcement-bar .close-announcement:hover {
    opacity: 1;
}

/* ============================================
   PREMIUM CHATBOT TOGGLE (Face)
   ============================================ */
.chatbot-toggle {
    width: 70px;
    height: 70px;
    padding: 0;
    overflow: hidden;
    border: 3px solid white;
    background: white;
}

.chatbot-toggle .toggle-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.chatbot-toggle:hover .toggle-avatar {
    transform: scale(1.1);
}

.notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    background: #ec4899;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-subtle 2s infinite;
}

@keyframes bounce-subtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Welcomer Bubble */
.chatbot-welcomer {
    position: fixed;
    bottom: 110px;
    right: 100px;
    /* Left of toggle */
    background: white;
    padding: 12px 20px;
    border-radius: 20px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 99998;
    opacity: 0;
    transform: translateY(10px);
    animation: fade-in-up 0.5s ease forwards 2s;
    /* Delayed appearance */
    max-width: 200px;
}

.welcomer-text {
    font-size: 0.9rem;
    color: #1a1a2e;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-welcomer {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    line-height: 1;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism Update */
.chatbot-window {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .roi-calculator {
        padding: 24px;
    }

    .exit-popup {
        padding: 32px 24px;
    }

    .chatbot-window {
        width: calc(100vw - 40px);
        height: 450px;
        right: -10px;
    }

    .social-proof-ticker {
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .chatbot-welcomer {
        right: 90px;
        bottom: 100px;
        font-size: 0.8rem;
    }

    /* Projection Table Mobile */
    .projection-table-wrapper {
        padding: 12px;
    }

    .projection-table th,
    .projection-table td {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

    .projection-table th:first-child,
    .projection-table td:first-child {
        min-width: 50px;
    }

    .roi-results .roi-result-item {
        padding: 12px 8px;
    }

    .roi-results .roi-result-item .value {
        font-size: 1rem;
    }

    .calculator-header h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}