:root {
    --color-bg: white;
    --color-surface: white;
    --color-surface-alt: #e0f7fa;
    --color-text: black;
    --color-muted: #555555;
    --color-border: #cccccc;
    --color-border-strong: rgb(29, 29, 29);
    --color-accent: cadetblue;
    --color-accent-strong: #3e7376;
    --color-navbar-bg: white;
    --color-button-text: black;
    --color-pill-bg: rgb(110, 193, 196);
    --color-highlight: #84d7ff;
    --color-highlight-strong: #32a5df;
}

body, html  {
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    transition: background-color 0.25s ease, color 0.25s ease;
}

#footernav{
    display: flex; 
    justify-content: space-between;  
    flex-wrap: wrap;
}
nav {
    display: flex;
    width: 100%;
}

.navbar{
    height: 70px;
    width: 100%;
    background-color: var(--color-navbar-bg);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.navbar-toggler {
    border: none;
    padding: 0.35rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(35%);
}

body.nav-open {
    overflow: hidden;
}

body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1000;
}

.nav-link {
    color: var(--color-text);
    font-weight: bold;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-accent-strong);
}

.apply-button,
.filter-button {
    color: #ffffff;
    font-weight: 700;
    background-image: linear-gradient(120deg, #6E54FF, #8F6FFF, #DDD7FE);
    border-radius: 999px;
    width: 120px;
    border: none;
    box-shadow: 0 10px 25px rgba(110, 84, 255, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.apply-button:hover,
.apply-button:focus,
.filter-button:hover,
.filter-button:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(110, 84, 255, 0.35);
    filter: brightness(1.05);
}

.search-input-wrapper {
    position: relative;
}

.search-close {
    display: none;
}

.mobile-search-toggle {
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
    border-color: var(--color-border-strong);
    color: var(--color-text);
}

.mobile-search-toggle:hover {
    color: var(--color-accent-strong);
    border-color: var(--color-accent-strong);
}

body.mobile-search-open {
    overflow: hidden;
}

body.mobile-search-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(4, 7, 18, 0.45);
    z-index: 1180;
}

.mint-gradient {
    background: linear-gradient(135deg, #DDD7FE 0%, #B6A3FF 45%, #6E54FF 100%);
    padding: 10px 0 40px;
}

@media (max-width: 991px) {
    .search-input-wrapper {
        display: none;
    }

    body.mobile-search-open .search-input-wrapper {
        display: block !important;
        position: fixed;
        top: 90px;
        left: 16px;
        right: 16px;
        z-index: 1185;
        background-color: var(--color-bg);
        padding: 18px;
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(5, 10, 25, 0.25);
    }

    body.mobile-search-open .search-close {
        display: inline-flex;
        position: absolute;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed !important;
        top: 0;
        left: 0;
        height: 100vh;
        width: min(320px, 78vw);
        padding: 100px 24px 32px;
        background-color: var(--color-bg);
        box-shadow: 14px 0 40px rgba(15, 23, 42, 0.25);
        transition: transform 0.3s ease-in-out;
        transform: translateX(-105%);
        z-index: 1100;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0.25rem;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link,
    .navbar-nav .btn {
        width: 100%;
        text-align: left;
        padding-left: 0;
    }
}

.navbar-brand{
    margin: 0px 2%;
}
.marketplace-button{
    color: var(--color-button-text);
    font-weight: bold;
    background-color: var(--color-accent);
    border-radius: 7px;
    border: none;
}
.user-button {
    margin-left: 10px;
    background-color: var(--color-surface);
    border-color: var(--color-accent);
    border-width: 1px;
    border-radius: 5px;
    color: var(--color-text);
}

.filter-button {
    width: 140px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.collections {
    margin: 30px 10px; 
    width: 100%; 
    justify-content: center;
    overflow-x: scroll;
    scrollbar-width: none;
}
.row{
    display: flex;
    flex-wrap: nowrap;
}

.row-collection{
    display: flex;
    flex-wrap: nowrap;
}

header {
    border-bottom: solid;
    border-color: var(--color-border-strong);
    border-bottom-width: 1px;
}

footer {
    border-top: solid;
    border-color: var(--color-border-strong);
    border-top-width: 1px;
    margin-top: 30px;
}

#carouselTrendingCollections {
    border-radius: 20px;
    overflow: hidden;
    background-color: transparent;
    padding-bottom: 0;
    margin: 10px 0 24px;
}

#carouselTrendingCollections .carousel-inner {
    border-radius: 20px;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    max-height: clamp(260px, 50vw, 420px);
    display: block;
    border-radius: 20px;
}

@media (max-width: 576px) {
    .hero-banner-img {
        max-height: 320px;
        border-radius: 14px;
    }
}

/* (🎯 resto de tu CSS queda sin cambios) */

/* ... sigue todo tu CSS tal cual lo pasaste ... */



.mint-card{
    background-color: var(--color-accent);
    border-radius: 5px;
    width: 20rem;
}

.blockchains{
    background-color: var(--color-pill-bg);
    border-radius: 7px;
    display: inline-block;
    padding: 5px;
}
 
.image-collection {
    display: flex; 
    justify-content: center;
    align-items: center;
    width: 90%;
    height: auto;
    max-width: 90%;
}

.login-button {
    color: var(--color-button-text);
    font-weight: bold;
    background-color: var(--color-accent);
    border-radius: 15px;
    width: 100px;
    margin: 10px;
    border: none;
}

.cancel-button {
    color: var(--color-button-text);
    font-weight: bold;
    background-color: var(--color-accent);
    border-radius: 15px;
    width: 100px;
    margin: 10px;
    border: none;
}

.clear-filter-button {
    width: 40%;
    background-color: var(--color-surface-alt);
    font-weight: bold;
    border-radius: 15px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    cursor: pointer;
}

.apply-filter-button{
    color: var(--color-button-text);
    font-weight: bold;
    background-color: var(--color-accent);
    border-radius: 15px;
    width: 40%;
    border: none;
}

#box {
    display: none;
    position: absolute;
    top: 100%; /* Ubica el contenedor justo debajo del input */
    left: 0;
    width: 100%;
    max-height: 250px; /* Ajusta la altura máxima */
    overflow-y: auto; /* Habilita el scroll si hay muchos resultados */
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    box-shadow: 0px 4px 8px rgba(5, 10, 25, 0.2);
    z-index: 1000;
}

#box a {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: var(--color-text);
}

#box a:hover {
    background-color: var(--color-surface-alt);
}

.apply-form-label {
    display: flex;
}

.modal-content {
    border-radius: 18px;
    border: 1px solid var(--color-border);
}

.modal-body {
    line-height: 1.5;
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 1.5rem auto;
    }

    .modal-content {
        padding: 0.5rem;
    }
}


.popup {
    display: none; /* Hidden by default */
    position: absolute;
    top: 50px;
    right: 20px;
    width: 300px;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(5, 10, 25, 0.25);
    z-index: 10;
}
.popup-content {
    padding: 5px 20px 20px 20px;
}
.profile {
    display: flex;
    align-items: center;
    gap: 10px;
}
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.banner{
    width: 100%;
}
.username {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
}
.copy-button {
    width: 80%;
    font-size: 12px;
    background-color: transparent;
    border-color: var(--color-border-strong);
    border-width: 1px;
    border-radius: 7px;
    color: var(--color-muted);
    cursor: pointer;
    margin: 4px 0px;
}

.copy-button--profile {
    width: 100%;
    font-size: 14px;
}
.premium-button {
    width: 80%;
    background-color: var(--color-surface-alt);
    font-weight: bold;
    border: none;
    border-radius: 5px;
    margin: 4px 0px;
    font-size: 12px;
    color: var(--color-text);
    cursor: pointer;
}
.menu {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}
.menu li a {
    text-decoration: none;
    color: var(--color-text);
    display: block;
    padding: 5px 0;
}
.disconnect-button {
    background-color: transparent;
    border: none;
    color: #ff5252;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .popup {
        position: static;
        width: 100%;
        max-width: none;
        right: 0;
        top: auto;
        border-radius: 14px;
        margin-top: 10px;
    }
}
.user-index-banner {
    width: 100%;
    height: clamp(180px, 32vh, 320px);
    overflow: hidden;
    position: relative;
    border-radius: 0;
    background-color: var(--color-border);
}

.user-index-banner img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.user-headers {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    margin: -60px auto 20px;
    padding: 0 40px;
    z-index: 2;
}

.user-index-pic {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
}

.user-index-ppal{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    flex: 1 1 320px;
}

.user-index-avatar {
    flex-shrink: 0;
}

.user-index-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.user-index-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
    min-height: 60px;
    flex: 1 1 200px;
}

.user-index-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex: 1 1 220px;
}

.user-index-action-buttons {
    width: 100%;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.user-index-premium-button,
.user-index-edit-profile{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    min-width: 160px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.user-index-premium-button{
    background-color: var(--color-surface-alt);
    color: var(--color-text);
    border: none;
}

.user-index-edit-profile{
    background-color: var(--color-surface);
    border-width: 1px;
    border-color: var(--color-border-strong);
    color: var(--color-text);
}

.user-index-premium-button:hover,
.user-index-edit-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(5, 10, 25, 0.12);
}

.user-index-member-since {
    text-align: right;
    width: 100%;
    font-weight: bold;
}

.user-index-bio-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.user-index-bio{
    display: flex;
    width: min(100%, 720px);
    min-height: 120px;
    margin: 5px 20px;
    border: 1px solid var(--color-border-strong);
    border-radius: 20px;
    padding: 12px 16px;
    overflow-y: auto;
    background-color: var(--color-surface);
    box-shadow: 0 10px 25px rgba(5, 10, 25, 0.08);
}

.user-index-bio textarea{
    outline: none;
    border: none;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.user-index-bio textarea:focus{
    outline: none;
    border: none;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.user-index-tabs{
    margin: 20px;
}

.socialnetworks{
    margin: 0px 7px;
}

.socialnetworksMgmt {
    margin: 0px 15px;
}

.plans-classic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .user-index-banner {
        border-radius: 18px;
    }

    .user-headers {
        margin-top: -40px;
        padding: 0 12px;
        gap: 16px;
    }

    .user-index-ppal,
    .user-index-socials,
    .user-index-actions {
        flex: 1 1 100%;
        background-color: var(--color-surface);
        border-radius: 16px;
        padding: 18px;
        box-shadow: 0 15px 45px rgba(5, 10, 25, 0.12);
    }

    .user-index-ppal {
        flex-direction: column;
        align-items: center;
    }

    .user-index-info {
        text-align: center;
    }

    .user-index-socials {
        justify-content: center;
    }

    .user-index-actions {
        align-items: center;
    }

    .user-index-action-buttons {
        justify-content: center;
    }

    .user-index-member-since {
        text-align: center;
    }

    .user-index-premium-button,
    .user-index-edit-profile {
        width: 100%;
    }

    .user-index-bio-wrapper {
        padding: 0 12px;
    }

    .user-index-bio {
        width: 100%;
        margin: 10px 0;
        min-height: 150px;
    }

    .user-index-ppal,
    .user-index-socials,
    .user-index-actions {
        background-color: var(--color-surface);
        border-radius: 16px;
        padding: 18px;
        box-shadow: 0 15px 45px rgba(5, 10, 25, 0.12);
    }

    .user-index-ppal {
        flex-direction: column;
        align-items: center;
    }

    .user-index-info {
        text-align: center;
    }

    .user-index-socials {
        justify-content: center;
    }

    .user-index-actions {
        align-items: center;
    }
}

.user-edit-wallet {
    border-radius: 7px;
    font-size: small;
    width: 100%;
    max-width: 400px;
}

.user-edit-pen{
    
}

.button-null {
    background: none;
    border: none;
}

.fav-count {
    font-weight: bold;
    min-width: 28px;
    text-align: right;
}

#add-favCollection svg {
    width: 24px;
    height: 24px;
}

#add-favCollection.in-favorites svg {
    color: var(--color-accent-strong);
}
.add-network {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.add-network-content{
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.del-network {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.del-network-content{
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.mgmt-network-header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 10px;
}

.apply-item {
    margin: 10px 7px;
}

.cardPng{
    width: 150px;
    height: 150px;
}

.cardBody{
    align-content: center;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: 160px;
    justify-content: flex-end;
    overflow: visible;
    padding: 20px;
    position: relative;
    width: 329px;
}

.card-collection .card-collection-content {
    align-content: center;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    height: 160px;
    justify-content: flex-end;
    overflow: visible;
    padding: 20px;
    position: relative;
    background-color: var(--color-surface);
    border-radius: 15px; /* Bordes redondeados */
    box-shadow: 0px 4px 10px rgba(5, 10, 25, 0.2); /* Sombra */
    color: var(--color-text);
    text-align: center;
}

.socialNetworksCollectionDetail{
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

/* Imagen ajustada */
.collectionLive-img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    object-position: center;
}

/* Tarjetas de colección */
.card-collection-live {
    display: inline-block;  /* Para que las tarjetas estén en línea horizontal */
    height: 350px;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-surface);
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(5, 10, 25, 0.2);
    color: var(--color-text);
    text-align: center;
    width: 250px; /* Ajusta este valor según el tamaño de las tarjetas */
    margin-right: 16px; /* Espacio entre tarjetas */
}

/* Contenedor de scroll horizontal */
.row-hscroll {
    display: flex;
    margin-top: 70px;
    justify-content: flex-start; /* Para evitar centrar los elementos */
    gap: 16px;
    overflow-x: auto; /* Permitir scroll horizontal */
    scrollbar-width: none; /* Oculta la barra en Firefox */
    -ms-overflow-style: none;  /* Oculta la barra en IE/Edge */
    white-space: nowrap; /* Evita que los elementos se ajusten en una nueva línea */
}

/* Ocultar la barra de desplazamiento en navegadores basados en Webkit */
.row-hscroll::-webkit-scrollbar {
    display: none;
}

.footerContainer{
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blockchainslist{
    display: flex;
}

#collection-details{
    display: flex; 
    margin-top: 70px;
    flex-wrap: wrap;
}

.collection-card{
    margin: 50px 0px;
}

.blockchain-icon img.selected {
    transform: scale(1.3); /* Agranda solo la imagen */
    transition: transform 0.2s ease-in-out; /* Animación suave */
}

.plan-checkout-card {
    background: linear-gradient(135deg, rgba(110, 84, 255, 0.08), rgba(50, 165, 223, 0.08));
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(5, 10, 25, 0.12);
    border: 1px solid rgba(110,84,255,0.15);
}

.plan-checkout-price {
    font-size: 2.25rem;
    font-weight: bold;
}

.plan-checkout-wallet {
    display: block;
    padding: 12px;
    background-color: var(--color-surface-alt);
    border-radius: 12px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.95rem;
    word-break: break-all;
    margin: 8px 0;
}
@media (max-width: 600px) {

    .blockchains{
      display: none;
    }

    #footernav{
        display: flex; 
        justify-content: center;  
        flex-wrap: wrap;
    }

    .user-index-pic {
        width: 80px;
        height: 80px;
        border-radius: 10%;
    }
}

.raffle-container{
    position: relative;
    width: 100%;
    height: auto;
}

.raffle-img{
    width: 100%;
    height: auto;
}
.raffle-button{
    color: white;
    font-weight: bold;
    font-size: larger;
    background-color: var(--color-highlight);
    border-radius: 35px;
    border: none;
    width: 170px;
    height: 70px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.raffle-button a{
    color: inherit; /* Hereda el color del texto padre */
    text-decoration: none;
}

.raffle-button:hover {
    background-color: var(--color-highlight-strong); /* Cambia el color al pasar el ratón */
  }

@media (max-width: 700px) {
    .raffle-button{
        color: white;
        font-weight: bold;
        font-size: medium;
        background-color: var(--color-highlight);
        border-radius: 35px;
        border: none;
        width: 100px;
        height: 40px;
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .raffle-container{
        position: relative;
        width: 100%;
        height: 35vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }
    .raffle-img{
        width: auto;          /* Ancho automático */
        height: 100%;         /* La imagen llena el alto del contenedor */
        object-fit: cover;    /* Recorta y escala la imagen para llenar el contenedor */
        object-position: center; /* Centra la imagen */
    }

}

#collection-name-column{
    min-width: 100px
}

@media (max-width: 1000px) {

    #collection-name-column{
        /* min-width: 40px;
        visibility: hidden;
        width: 50px; */
        display: none;
    }

    .collections {
        margin: 30px 10px; 
        width: 100%; 
        justify-content: center;
        overflow-x: scroll;
        scrollbar-width: auto;
    }
}

@media (min-width: 992px) {
    .user-headers {
        display: grid;
        grid-template-columns: minmax(240px, 320px) minmax(220px, 1fr) minmax(240px, 280px);
        gap: 32px;
        align-items: flex-start;
        padding: 0 60px;
        margin: -60px auto 30px;
    }

    .user-index-ppal,
    .user-index-socials,
    .user-index-actions {
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .user-index-ppal {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .user-index-socials {
        justify-content: flex-start;
        gap: 12px;
    }

    .user-index-actions {
        align-items: flex-end;
    }

    .user-index-bio-wrapper {
        justify-content: flex-start;
        padding: 0 60px;
    }

    .user-index-bio {
        width: 60%;
    }
}

.plans-classic {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 992px) {
    .plans-classic {
        display: grid;
        grid-template-columns: repeat(3, minmax(260px, 1fr));
        gap: 24px;
    }
}

.plan-classic-card {
    background-color: #ffffff;
    border: 1px solid rgba(4, 7, 18, 0.08);
    border-radius: 28px;
    box-shadow: 0 22px 45px rgba(5, 10, 25, 0.16);
    padding: 28px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-classic-badge {
    display: inline-block;
    background-color: rgba(110, 84, 255, 0.2);
    color: #1a1238;
    padding: 4px 14px;
    border-radius: 999px;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.plan-classic-price {
    margin: 10px 0;
    font-weight: bold;
    color: #1a1238;
}

.plan-classic-description {
    font-weight: bold;
    color: #1a1238;
    margin-bottom: 12px;
}

.plan-classic-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-classic-features li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.plan-classic-check {
    color: #32a5df;
    font-weight: bold;
}

.plan-classic-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-classic-index {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(4, 7, 18, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.plan-classic-button {
    border: none;
    border-radius: 999px;
    padding: 8px 22px;
    background-color: #7de1da;
    color: #042033;
    font-weight: bold;
    box-shadow: 0 10px 22px rgba(125, 225, 218, 0.4);
}
