:root {
    --primary: #5d8aa8;
    --primary-dark: #4a6fa5;
    --secondary: #8ab9c4;
    --accent: #a8d5ba;
    --light: #f8f9fa;
    --dark: #212529;
    --danger: #dc3545;
    --calm: #e6f2ff;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #a7bfe3 0%, #bdeefa 100%);
    color: var(--dark);
    min-height: 100vh;
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
}

#app-container {
    cursor: none;
    padding: 20px;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    z-index: 9999;
    display: none;
}

#app-container .cursor {
    display: block;
}

.cursor.hover {
    width: 40px;
    height: 40px;
    background-color: rgba(93, 138, 168, 0.2);
}

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

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(93, 138, 168, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    animation: fadeInDown 0.8s ease-out;
}

.logo-image {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

/* Enhanced Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 12px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

nav a:hover, nav a.active, nav a:focus-visible {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(93, 138, 168, 0.3);
    outline: none;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    height: 50px;
    width: 100px; /* Adjusted width for better alignment */
}

/* Main Content & Sections */
.main-content {
    display: block;
    margin-bottom: 50px;
}

.section-container {
    padding-top: 80px;
    margin-top: -80px;
    position: relative;
    overflow: hidden; /* Contain background elements */
}

.interactive-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.interactive-background .star {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: twinkle 5s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}


/* Home Section */
.home-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.home-text .title-animate {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.home-text .text-animate {
    font-size: 1.2rem;
    color: var(--dark);
    animation: slideIn 1s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.brain-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.brain-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

.benefit-popup {
    position: absolute;
    background-color: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.5);
    animation: popup 0.5s ease-out forwards;
}

#benefit1 { top: 20%; left: 0; animation-delay: 1s; }
#benefit2 { top: 20%; right: 0; animation-delay: 1.5s; }
#benefit3 { bottom: 20%; left: 0; animation-delay: 3s; }
#benefit4 { bottom: 20%; right: -10%; animation-delay: 2.5s; }
#benefit5 { bottom: 60%; left: -40%; animation-delay: 3.5s; }
#benefit6 { bottom: 40%; left: -28%; animation-delay: 2s;  }

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 35px;
    transition: var(--transition);
    border-left: 8px solid transparent;
    z-index: 1;
    margin-bottom: 40px;
    position: relative; /* Ensure card content is above background */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--primary);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(240, 240, 240, 0.8);
}

.card-icon {
    width: 75px;
    height: 55px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(13, 59, 90, 0.2);
    animation: float 8s ease-in-out infinite;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Poppins', sans-serif;
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Journal Section */
textarea {
    width: 100%;
    height: 180px;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    font-size: 1.1rem;
    resize: vertical;
    margin-bottom: 20px;
    transition: var(--transition);
    font-family: 'Nunito', sans-serif;
    background: #f9fbfd;
}

textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(93, 138, 168, 0.2);
    background: white;
}

.btn {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    box-shadow: 0 6px 15px rgba(93, 138, 168, 0.3);
    text-decoration: none;
}

.btn:hover, .btn:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(93, 138, 168, 0.4);
    outline: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover, .btn-outline:focus-visible {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 6px 15px rgba(93, 138, 168, 0.3);
}

.mood-display {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: linear-gradient(to right, #e6f2ff, #f0f7ff);
    border-radius: 20px;
    margin-top: 25px;
}

.mood-icon {
    font-size: 3.2rem;
    animation: bounce 1.5s infinite alternate;
}

.mood-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.mood-chart {
    height: 220px;
    margin-top: 30px;
    background: #f8fafc;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.chart-bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bar { width: 100%; border-radius: 8px 8px 0 0; background: linear-gradient(to top, var(--primary), var(--secondary)); transition: height 1s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 -4px 10px rgba(93, 138, 168, 0.2); }
.bar-label { font-size: 0.85rem; color: #666; margin-top: 5px; }

/* Journal Entries */
.entries-container { margin-top: 30px; }
.entries-container h3 { margin-bottom: 20px; color: var(--primary-dark); }
.entry { background: #f8fafc; border-radius: 18px; padding: 20px; margin-bottom: 20px; border-left: 4px solid var(--primary); transition: var(--transition); }
.entry:hover { transform: translateX(5px); box-shadow: 0 5px 15px rgba(93, 138, 168, 0.1); }
.entry-header { display: flex; justify-content: space-between; margin-bottom: 12px; align-items: center; }
.entry-date { font-size: 0.9rem; color: #666; }
.entry-mood { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.entry-content { line-height: 1.6; color: #444; word-wrap: break-word; }
.entry-empty { text-align: center; padding: 40px 20px; color: #666; background-color: #f8fafc; border-radius: 18px; }

/* Generative AI Section */
.ai-controls { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin: 20px 0 30px; }
.theme-selector { display: flex; gap: 10px; background-color: rgba(240, 245, 250, 0.8); padding: 8px; border-radius: 18px; }
.theme-btn { background: transparent; border: none; padding: 10px 20px; font-weight: 600; font-size: 1rem; border-radius: 14px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 8px; }
.theme-btn.active { background: white; color: var(--primary); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.ai-result-container { min-height: 200px; background-color: #f8fafc; border-radius: 18px; padding: 30px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
#ai-output { font-size: 1.2rem; line-height: 1.7; color: var(--primary-dark); transition: opacity 0.5s ease; width: 100%;}
#ai-output .placeholder-text { color: #888; font-style: italic; }
.ai-loading { text-align: center; color: var(--primary); }
.ai-loading p { margin-top: 15px; font-weight: 600; }
.ai-loading span { display: inline-block; width: 10px; height: 10px; background-color: var(--primary); border-radius: 50%; margin: 0 4px; animation: loading-pulse 1.4s infinite ease-in-out both; }
.ai-loading span:nth-child(1) { animation-delay: -0.32s; }
.ai-loading span:nth-child(2) { animation-delay: -0.16s; }
#save-to-journal-btn { margin-top: 25px; }

@keyframes loading-pulse {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
}

/* Mindfulness Section */
.exercise-circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    margin-top: 40px;
}
.exercise-list {
    list-style: none;
    position: relative;
    width: 300px; /* Diameter of the circle */
    height: 300px;
    perspective: 1000px;
}
.exercise-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px; /* Width of each exercise card */
    height: 120px;
    margin: -60px 0 0 -100px; /* Center the item */
    cursor: pointer;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    animation: pulse-glow 2s infinite alternate;
}

.exercise-front, .exercise-back {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
}
.exercise-front {
    background: linear-gradient(to right, #f8fafc, #f0f5fa);
    border: 2px solid transparent;
    transition: var(--transition);
}
.exercise-item:hover .exercise-front {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(93, 138, 168, 0.15);
}
.exercise-back {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: rotateY(180deg);
}
.exercise-info h3 { margin-bottom: 8px; color: var(--primary-dark); font-size: 1.25rem; }
.exercise-info p { font-size: 0.95rem; color: #555; max-width: 280px; }
.exercise-duration { background: linear-gradient(to right, var(--primary), var(--secondary)); color: white; padding: 8px 18px; border-radius: 30px; font-weight: 700; box-shadow: 0 4px 10px rgba(93, 138, 168, 0.3); position: absolute; bottom: -15px; }


/* Resources Section */
.resources-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 25px; margin-top: 25px; }
.resource-card { background: linear-gradient(to bottom right, #f8fafc, #f0f5fa); padding: 28px 20px; border-radius: 20px; text-align: center; transition: var(--transition); border: 2px solid transparent; }
.resource-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 12px 25px rgba(93, 138, 168, 0.2); }
.resource-icon { font-size: 2.8rem; margin-bottom: 20px; color: var(--primary); background: rgba(93, 138, 168, 0.1); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 20px; transition: var(--transition); }
.resource-card:hover .resource-icon { transform: scale(1.1) rotate(5deg); background: rgba(93, 138, 168, 0.2); }
.resource-title { font-weight: 700; margin-bottom: 12px; color: var(--primary-dark); font-size: 1.25rem; }
.resource-desc { font-size: 0.95rem; color: #555; line-height: 1.5; }
.emergency { background: linear-gradient(to right, #fff8f8, #fff0f0); border-left: 5px solid var(--danger); padding: 30px; border-radius: 0 20px 20px 0; margin-top: 35px; }
.emergency h3 { color: var(--danger); margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-size: 1.5rem; }
.emergency p { margin-bottom: 20px; line-height: 1.6; }
.hotline { font-weight: 800; font-size: 1.4rem; color: var(--danger); display: block; background: rgba(220, 53, 69, 0.1); padding: 12px; border-radius: 12px; text-align: center; }

/* Profile Section */
.profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.profile-email {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.profile-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    background: #f8fafc;
    padding: 20px;
    border-radius: 18px;
    grid-column: 1 / -1; /* Make stats span full width */
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.profile-settings {
    grid-column: 1 / -1; /* Make settings span full width */
}

.profile-settings h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.setting {
    margin-bottom: 15px;
}

.setting label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.setting input {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

/* Footer Styles */
footer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px 24px 0 0;
    padding: 40px 0 20px;
    margin-top: 50px;
    text-align: center;
    color: var(--dark);
}
.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: left;
}
.footer-section h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}
.footer-section p, .footer-section li {
    margin-bottom: 10px;
}
.footer-section i {
    margin-right: 10px;
    color: var(--primary);
}
.social-links a {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: var(--primary-dark);
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Modal Styles */
.modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    padding: 40px;
    border-radius: 24px;
    width: 80%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.5s ease-out;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    margin-bottom: 20px;
    color: var(--primary-dark);
    text-align: center;
}

.modal form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.social-login {
    text-align: center;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--primary-dark);
}


/* Accessibility & Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

.hidden {
    display: none !important;
}

/* Chatbot Styles */
.chatbot-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1001;
}

.chatbot-fab:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    z-index: 1000;
}

.chatbot-window.hidden {
    transform: scale(0);
    opacity: 0;
}

.chatbot-header {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.close-chatbot-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chatbot-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    padding: 10px 15px;
    border-radius: 18px;
    max-width: 80%;
    line-height: 1.5;
}

.chat-message.user {
    background-color: #e6f2ff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

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

.chatbot-input-form {
    display: flex;
    border-top: 1px solid #eee;
    padding: 10px;
}

#chatbot-input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 1rem;
    outline: none;
}

.chatbot-input-form button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0 10px;
}

/* Animations */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
@keyframes bounce { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }
@keyframes slideIn { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes popup { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes pulse-glow {
    0% { box-shadow: 0 0 5px rgba(93, 138, 168, 0.2); }
    100% { box-shadow: 0 0 20px rgba(93, 138, 168, 0.6); }
}
@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .profile-content { grid-template-columns: 1fr; }
    .home-content { flex-direction: column; text-align: center; }
    .brain-container { width: 300px; height: 300px; }
}
@media (max-width: 768px) {
    header { flex-direction: column; gap: 25px; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 8px; }
    nav a { padding: 10px 12px; min-width: auto; font-size: 0.95rem; }
    .resources-grid { grid-template-columns: 1fr; }
    .exercise-circle-container { min-height: 600px; }
    .exercise-list { transform: scale(0.8); }
    .ai-controls { flex-direction: column; }
    .theme-selector { width: 100%; justify-content: center; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-section { width: 100%; }
    .profile-header { flex-direction: column; text-align: center; }
}
.logo{
    font-size: 2.5rem;
    color: var(--primary-dark);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

