/* Tile order --------------------------------------------------------------------------------------- */
/* Tile order --------------------------------------------------------------------------------------- */
/* Tile order --------------------------------------------------------------------------------------- */
/* Tile order --------------------------------------------------------------------------------------- */
/* Tile order --------------------------------------------------------------------------------------- */
/* Tile order --------------------------------------------------------------------------------------- */

#tile-1 { order: 1; }
#tile-2 { order: 2; }
#tile-3 { order: 3; }
#tile-4 { order: 4; }
#tile-5 { order: 5; }
#tile-6 { order: 6; }
#tile-7 { order: 7; }
#tile-8 { order: 8; }
#tile-9 { order: 9; }
#tile-10 { order: 10; }
#tile-11 { order: 11; }
#tile-12 { order: 12; }
#tile-13 { order: 13; }
#tile-14 { order: 14; }
#tile-15 { order: 15; }
#tile-16 { order: 16; }
#tile-17 { order: 17; }
#tile-18 { order: 18; }
#tile-19 { order: 19; }
#tile-20 { order: 20; }
#tile-21 { order: 21; }
#tile-22 { order: 22; }
#tile-23 { order: 23; }
#tile-24 { order: 24; }
#tile-25 { order: 25; }
#tile-26 { order: 26; }
#tile-27 { order: 27; }
#tile-28 { order: 28; }
#tile-29 { order: 29; }
#tile-30 { order: 30; }


body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Ensures content stacks naturally */
    min-height: 100vh;
    background-color: #FAFAFA;
    margin: 0;
    font-family: 'Inter', sans-serif; 
    line-height: 1.2;
    color: #1a1c21;
}

.content {
    margin-top: 100px;
    width: 100%;
    max-width: 2000px;
    margin-bottom: 100px;
    align-items: center;
    justify-content: center;
}

.welcome-content {
    
    margin: 0px auto;
    margin-top: 24px;
    width: 100%;
    max-width: 710px;
    margin-bottom: 0px;
    align-items: center;
    justify-content: left;

    position: relative;
    align-items: center;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(6, 110px); /* Ensures consistent spacing */
    grid-template-rows: repeat(3, 110px);
    gap: 10px; /* Ensures spacing around ALL tiles */
    position: relative;
    grid-auto-flow: row; /* Forces strict row-based layout (respects order) */
    margin-top: 30px;
    margin-bottom: 50px;
    align-items: center;
}

.grid-item {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    width: 100px;
    height: 100px;
    order: unset; /* Keeps the tiles in their natural order */

    transition: opacity 0.3s ease-in-out;
    transition: transform 0.1s ease-in-out;
            
    animation: fadeOut 0.4s linear forwards;
    animation-play-state: paused;
}

.grid-item:hover {
    transform: scale(0.97);
}

.grid-item.expanded:hover {
    transform: scale(0.99);
}

.grid-item.expanded {
    background-color: black;
    color: white;
    z-index: 10;
    grid-column: span 2;
    grid-row: span 2;
    width: 220px;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.grid-item.shrunk {
    background-color: black; /* Keep it black */
    position: relative; /* Needed for checkmark positioning */
}

.grid-item.shrunk::after {
    content: "⬤";
    font-size: 14px;
    color: rgba(255, 255, 255, 0.25);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.img-padding {
    margin-bottom: 40%;
}

@keyframes fadeOut {
    from { opacity: 0.1; }
    to { opacity: 1; }
}

.grid-item:hover {
    animation-play-state: running;
}


/* Modal Content (Initially Hidden) */
.modal-content {
    opacity: 0;
    position: absolute;
    text-align: center;
    transition: opacity 0.3s ease-in-out;
    font-size: 14px;
    display: none;
    width: 100%;
    padding: 20px; /* Internal padding */
    box-sizing: border-box; /* Ensures padding doesn’t increase the width */
}

.grid-item.expanded .modal-content {
    opacity: 1;
    display: block;
}

/* Medium modal (4x4 size) */
.grid-item.modal-medium.expanded {
    grid-column: span 4;
    grid-row: span 4;
    width: 460px;
    height: 460px;
}

/* Medium modal (3x3 size) */
.grid-item.modal-medium-small.expanded {
    grid-column: span 3;
    grid-row: span 3;
    width: 340px;
    height: 340px;
}

/* Large modal (4x4 size) */
.grid-item.modal-large.expanded {
    grid-column: span 6;
    grid-row: span 6;
    width: 700px;
    height: 700px;
}

/* Small modal (1x1 size, just a bit bigger) */
.grid-item.modal-small.expanded {
    grid-column: span 1;
    grid-row: span 1;
    width: 100px;
    height: 100px;
    padding:0px;
}


/* Background image for all expanded modals ----------------------------- */
/* Background image for all expanded modals ----------------------------- */
/* Background image for all expanded modals ----------------------------- */
/* Background image for all expanded modals ----------------------------- */
/* Background image for all expanded modals ----------------------------- 


.teacher-gpt {
    background-image:url('img/teacher-gpt-background.png');
}

.family {
    background-image:url('img/kids1.png');
}
*/






/* Text styles -----------------------------------------------------------*/
/* Text styles -----------------------------------------------------------*/
/* Text styles -----------------------------------------------------------*/
/* Text styles -----------------------------------------------------------*/
/* Text styles -----------------------------------------------------------*/
/* Text styles -----------------------------------------------------------*/

html {
    font-size: 14px; /* This sets what 1rem equals */
}

p {
    text-align: left;
    line-height: 1.25em;
    cursor: text;
}

a {
    color: #4DCCA8; /* Softer blue */
    text-decoration: none; /* Removes underline */
    font-weight: 600; /* Makes it look cleaner */
    transition: color 0.2s ease-in-out, text-decoration 0.2s ease-in-out;
}

a:hover {
    color: #4DCCA8; /* Darker blue for contrast */
    text-decoration: underline; /* Subtle underline on hover */
}

a:visited {
    color: #4DCCA8; /* Softer purple for visited links */
}

a:active {
    color: #0B1F19; /* Even darker when actively clicked */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* Gives a premium look */
    letter-spacing: -0.25px; /* Slight tightening for a refined feel */
    margin-bottom: 10px;
    cursor: text;
    color: #1a1c21;
}

h1 {
    font-size: 1.5rem; /* Large but not too overpowering */
}

h2 {
    font-size: 1.2rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1.1rem;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@500;600&display=swap');

.badge {
    display: inline-block; /* Ensures it wraps around text */
    padding: 6px 12px; /* Adds space inside */
    background-color: rgba(255, 255, 255, 1); /* Soft transparent background */
    border-radius: 100px; /* Fully rounded edges */
    font-size: 14px;
    font-weight: 600;
    color: #1a1c21; /* Text color */
    text-align: center;
    white-space: nowrap; /* Prevents line breaks */
    padding-bottom: 4px;
    cursor: text;
}

.black-bg-text {
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
    border-radius: 2px;
    display: inline-block;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* Button Component -----------------------------------------------------------*/
/* Button Component -----------------------------------------------------------*/
/* Button Component -----------------------------------------------------------*/

.btn {
    padding: 15px 30px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
}

.btn:active {
    transform: translateY(1px);
}

/* Primary Button (White with Gray Border) */
.btn-primary {
    background: white;
    color: #1a1c21;
    border: 2px solid #ddd;
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: repeating-linear-gradient(
        135deg,
        rgb(218, 0, 218) 0%,
        white 10%,
        black 20%,
        white 30%,
        rgb(218, 0, 218) 40%
    );
    background-size: 465% 465%;
    z-index: -1;
    opacity: 0;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 6px;
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
    inset: -2px;
    animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.btn-primary:hover {
    border-color: transparent;
}

.btn-primary:active {
    background-color: #f9f9f9;
}

.btn-primary:active::after {
    background-color: #f9f9f9;
}

/* Secondary Button (Dark) */
.btn-secondary {
    background-color: #333;
    color: white;
}

.btn-secondary:hover {
    background-color: #555;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary:active {
    background-color: #222;
}

/* Button Sizes */
.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Split Button */
.split-button {
    display: inline-flex;
    align-items: stretch;
    position: relative;
    overflow: visible; /* Allow gradient border to extend outside */
}

/* Unified gradient border around entire split button */
.split-button::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: repeating-linear-gradient(
        135deg,
        rgb(218, 0, 218) 0%,
        white 10%,
        black 20%,
        white 30%,
        rgb(218, 0, 218) 40%
    );
    background-size: 465% 465%;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

/* Visible divider line with top and bottom padding - positioned at junction */
.split-button::after {
    content: '';
    position: absolute;
    top: 20%;
    bottom: 20%;
    width: 2px;
    background-color: #ddd;
    pointer-events: none;
    z-index: 10;
    /* Position at left edge of caret button (which overlaps by 2px) */
    right: 45px; /* Start with caret's min-width */
    margin-right: 2px; /* Account for caret's margin-left: -2px */
}







.split-button-main {
    border-radius: 8px 0 0 8px;
    border-right: 2px solid #ddd !important;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

.split-button-main::before {
    border-radius: 8px 0 0 8px;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: 0;
}

/* Override btn-primary::after to not cover the right border and add divider */
.split-button-main::after {
    border-radius: 6px 0 0 6px;
    inset: 0 2px 0 0 !important; /* Leave space for the 2px border on the right */
    /* Add divider line with top/bottom padding using a pseudo-element approach */
}


.split-button-caret {
    border-radius: 0 8px 8px 0;
    border-left: none;
    padding: 15px 15px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -2px;
    position: relative;
}

.split-button-caret::before {
    border-radius: 0 8px 8px 0;
    top: -2px;
    left: 0;
    bottom: -2px;
    right: -2px;
}

/* Override btn-primary::after to maintain background */
.split-button-caret::after {
    border-radius: 0 6px 6px 0;
    inset: 0;
    background: white;
}


/* Show unified gradient border around entire button when hovering main button part */
.split-button:has(.split-button-main:hover)::before {
    opacity: 1;
    animation: gradientShift 4s linear infinite;
}

/* Disable individual button gradients when using unified gradient */
.split-button:has(.split-button-main:hover) .split-button-main::before,
.split-button:has(.split-button-main:hover) .split-button-caret::before {
    opacity: 0;
}

/* Show gradient border only on caret side when hovering caret */
.split-button:has(.split-button-caret:hover) .split-button-caret::before {
    opacity: 1;
    animation: gradientShift 4s linear infinite;
    border-radius: 8px;
    /* Extend 1px further outside the container */
    top: -2px;
    left: -2px; /* Extend 3px left (from default 0) to account for margin-left: -2px and 1px further */
    bottom: -2px;
    right: -2px;
}

/* Disable unified gradient when hovering only caret */
.split-button:has(.split-button-caret:hover):not(:has(.split-button-main:hover))::before {
    opacity: 0;
}

.split-button:has(.split-button-main:hover) .split-button-main,
.split-button:has(.split-button-main:hover) .split-button-caret {
    border-color: transparent;
}

.split-button:has(.split-button-caret:hover) .split-button-caret {
    border-color: transparent;
}

/* Make divider transparent on hover so gradient flows continuously */
.split-button:has(.split-button-main:hover) .split-button-main {
    border-right-color: transparent !important;
}

/* Hide separator line when hovering main button */
.split-button:has(.split-button-main:hover)::after {
    display: none;
}

.split-button:has(.split-button-caret:hover)::after {
    display: none;
}

/* Keep divider and main button border visible when hovering caret */
.split-button:has(.split-button-caret:hover) .split-button-main {
    border-color: #ddd;
}

/* Subtle grey background on the specific side being hovered */
.split-button-main:hover::after {
    background-color: #f5f5f5;
    box-shadow: inset 0 0 0 2px white;
    border-radius: 8px;
}

.split-button-caret:hover::after {
    background-color: #f5f5f5;
    box-shadow: inset 0 0 0 4px white;
    border-radius: 0 6px 6px 0; /* Subtle border radius for the background */
}

/* Remove inset effect and make active state slightly darker than hover */
.split-button-main:active,
.split-button-caret:active {
    transform: none;
}

.split-button-main:active::after {
    background-color: #e8e8e8;
}

.split-button-caret:active::after {
    background-color: #e8e8e8;
}


/* Navigation Menu -----------------------------------------------------------*/
/* Navigation Menu -----------------------------------------------------------*/
/* Navigation Menu -----------------------------------------------------------*/

.nav-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-menu p {
    margin: 0;
    display: inline;
}

.nav-menu-item {
    margin: 0;
    padding: 0;
    cursor: pointer;
    display: inline;
    color: #1a1c21;
}

.nav-menu-item:hover {
    text-decoration: underline;
}

.nav-menu-separator {
    padding: 0 4px;
    color: #1a1c21;
}


/* Input Field Page Styles -----------------------------------------------------------*/
/* Input Field Page Styles -----------------------------------------------------------*/
/* Input Field Page Styles -----------------------------------------------------------*/

.input-page-body {
    min-height: 100vh;
    background-color: #FAFAFA;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    gap: 60px;
}

.input-container {
    text-align: center;
    position: relative;
    max-width: 900px;
    min-width: 800px;
    width: 100%;
}

.description-text {
    max-width: 900px;
    min-width: 800px;
    margin: 0;
    text-align: left;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 1.2em;
    line-height: 1.5em;
    width: 100%;
}

/* App Window Container */
.app-window {
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    min-width: 800px;
    max-width: 900px;
    min-height: 300px;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.app-window-header {
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.app-window-title {
    font-size: 14px;
    font-weight: 500;
    color: #1a1c21;
    font-family: 'Inter', sans-serif;
}

.app-window-content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 80px;
}

.app-window-toolbar {
    display: flex;
    gap: 8px;
    align-items: center;
}

.fake-button {
    padding: 10px 16px;
    background-color: #f5f5f5;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #666;
    font-weight: 400;
    cursor: default;
    user-select: none;
    min-height: 32px;
    min-width: 70px;
}

.app-window-main-content {
    padding: 0 20px 20px 20px;
    flex: 1;
}

.app-container-placeholder {
    background-color: #fafafa;
    border-radius: 6px;
    min-height: 400px;
    width: 100%;
}

.centered-input {
    width: 400px;
    max-width: 90vw;
    padding: 15px 20px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    color: #1a1c21;
    background-color: white;
    transition: border-color 0.3s ease;
}

.centered-input:focus {
    outline: none;
    border-color: #1a1c21;
}

.centered-input::placeholder {
    color: #999;
}

.input-label {
    font-size: 20px;
    color: #1a1c21;
    margin-bottom: 15px;
    display: block;
    font-family: 'Inter', sans-serif;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
}

.breadcrumb {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 8px;
    align-items: center;
}

.breadcrumb p,
.breadcrumb a {
    margin: 0;
    display: inline;
}

.breadcrumb-item {
    margin: 0;
    padding: 0;
    cursor: pointer;
    display: inline;
    color: #1a1c21 !important;
    text-decoration: none !important;
    font-weight: normal !important;
    transition: none !important;
}

.breadcrumb-item:hover {
    text-decoration: underline !important;
    color: #1a1c21 !important;
}

.breadcrumb-item:visited {
    color: #1a1c21 !important;
}

.breadcrumb-item:not(a) {
    cursor: default;
}

.breadcrumb-item:not(a):hover {
    text-decoration: none !important;
    color: #1a1c21 !important;
    cursor: text !important;
}

.breadcrumb-separator {
    padding: 0 4px;
    color: #1a1c21;
}

.page-title {
    text-align: left;
    margin: 0;
    max-width: 900px;
    min-width: 800px;
    width: 100%;
}

/* Experiment Row Component -----------------------------------------------------------*/
/* Experiment Row Component -----------------------------------------------------------*/
/* Experiment Row Component -----------------------------------------------------------*/

.experiment-row {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.experiment-row:last-child {
    border-bottom: none;
}

.experiment-row-content {
    flex: 1;
    text-align: left;
}

.experiment-row-description {
    font-size: 1rem;
    color: #1a1c21;
    margin: 0;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.experiment-row-action {
    flex-shrink: 0;
}






/* Media styles -----------------------------------------------------------*/
/* Media styles -----------------------------------------------------------*/
/* Media styles -----------------------------------------------------------*/
/* Media styles -----------------------------------------------------------*/
/* Media styles -----------------------------------------------------------*/
/* Media styles -----------------------------------------------------------*/
/* Media styles -----------------------------------------------------------*/

@media (max-width: 768px) {

    .welcome-content{
        width: 340px;
        margin: 0px auto;
        padding-top: 34px !important;
    }

    .grid-container {
        grid-template-columns: repeat(3, 110px); /* 2 columns */
        grid-template-rows: auto;
        gap: 8px; /* Reduce gap */
    }

    .page-header {
        font-size: 18px; /* Reduce heading size */
        padding: 12px;
    }


/* Medium modal (4x4 size) */
.grid-item.modal-medium.expanded {
    grid-column: span 3;
    grid-row: span 3;
    width: 340px;
    height: 340px;
}
/* Medium modal (3x3 size) */
.grid-item.modal-medium-small.expanded {
    grid-column: span 3;
    grid-row: span 3;
    width: 340px;
    height: 340px;
}

/* Large modal (4x4 size) */
.grid-item.modal-large.expanded {
    grid-column: span 3;
    grid-row: span 3;
    width: 340px;
    height: 340px;
}

.carousel {
    position: relative;
    width: 100%;
    min-height: 200px !important;
    max-height: 200px !important; /* Set a height to prevent collapse */
    overflow: hidden;
    margin: 0px;
    padding:0px;
}


.grid-item.expanded {
    grid-column: span 3;
    grid-row: span 3;
    width: 340px;
    height: 340px;
}


.grid-item.modal-large.expanded:hover {
    transform: none !important; /* Ensures no scaling */
}


.hidden-grid {
            display: none;
}

}


/* Full Page Modal Styles -----------------------------------------------------------*/
/* Full Page Modal Styles -----------------------------------------------------------*/
/* Full Page Modal Styles -----------------------------------------------------------*/

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    top: -20%;
}

.modal-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
}

.modal-container {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.modal-section {
    flex: 1;
    background: white;
    border-radius: 8px;
    border: 2px solid #ddd;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 220px;
    max-height: 220px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: modalFadeIn 0.15s ease-out forwards;
}

.modal-section:nth-child(1) {
    animation-delay: 0.1s;
}

.modal-section:nth-child(2) {
    animation-delay: 0.15s;
}

.modal-section:nth-child(3) {
    animation-delay: 0.2s;
}

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



.modal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #1a1c21;
    text-align: left;
}

.modal-section p {
    color: #666;
    margin: 0;
    flex: 1;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: #1a1c21;
    border: 2px solid #ddd;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: background-color 0.2s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: modalFadeIn 0.2s ease-out forwards;
    animation-delay: 0.3s;
}

.modal-close::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: repeating-linear-gradient(
        135deg,
        rgb(218, 0, 218) 0%,
        white 10%,
        black 20%,
        white 30%,
        rgb(218, 0, 218) 40%
    );
    background-size: 465% 465%;
    z-index: -1;
    opacity: 0;
}

.modal-close::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    border-radius: 50%;
    z-index: -1;
}

.modal-close:hover::before {
    opacity: 1;
    inset: -2px;
    animation: gradientShift 4s linear infinite;
}

.modal-close:hover {
    border-color: transparent;
}

.modal-close:active {
    background-color: #f9f9f9;
}

.modal-close:active::after {
    background-color: #f9f9f9;
}


/* Toast Notification -----------------------------------------------------------*/
/* Toast Notification -----------------------------------------------------------*/
/* Toast Notification -----------------------------------------------------------*/

.toast {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #1a1c21;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    max-width: 90vw;
    text-align: center;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.toast.success {
    background-color: #1a1c21;
}

.toast-icon {
    margin-right: 8px;
}

