:root {
    /* --bs-body-bg: #0f151b !important;  Remplace cette valeur par la couleur souhait�e */
}

html, body {
color: #fff;
}
#app {
    scrollbar-width: none; 
}

    #app::-webkit-scrollbar {
        display: none; 
    }

.main-app-wrapper {
    overflow-y: scroll; /* Permet de scroller sur l'axe Y */
    overflow-x: hidden; /* Bloque le scroll horizontal */
    scrollbar-width: none; /* Cache la barre de défilement sur Firefox */
}

    .main-app-wrapper::-webkit-scrollbar {
        display: none; /* Cache la barre de défilement sur Chrome, Edge et Safari */
    }

[data-bs-theme="dark"] .main-view {
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: -1;
    display: flex; /* Optionnel : utile si vous voulez centrer ou organiser le contenu */
    flex-direction: column;
    overflow: hidden; /* Empêche le scroll sur le conteneur principal */
    position: fixed; /* Fixe la div principale */
    background-image: url("../img/bg1.png"); /* Exemple d'image */
    background-size: cover; /* L'image couvre toute la div */
    background-position: center; /* Centrer l'image */
    background-repeat: no-repeat; /* Empêche la répétition */
}
[data-bs-theme="light"] .main-view {
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: -1;
    display: flex; /* Optionnel : utile si vous voulez centrer ou organiser le contenu */
    flex-direction: column;
    overflow: hidden; /* Empêche le scroll sur le conteneur principal */
    position: fixed; /* Fixe la div principale */
    background-image: url("../img/bg2.png"); /* Exemple d'image */
    background-size: cover; /* L'image couvre toute la div */
    background-position: center; /* Centrer l'image */
    background-repeat: no-repeat; /* Empêche la répétition */
}

.scrollable-content {
    flex: 1; /* Prend tout l'espace disponible */
    overflow-y: auto; /* Active le défilement vertical uniquement */
}
.main-view-test {
    background-image: url("../img/bg1.png"); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}

.fullscreen-boarding {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0f151b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1400; /* Assurez-vous que c'est au-dessus de tout autre contenu */
}



[data-bs-theme="dark"] .fullscreen-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0f151b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    z-index: 1400; /* Assurez-vous que c'est au-dessus de tout autre contenu */
}
[data-bs-theme="light"] .fullscreen-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #e2e2e2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    z-index: 1400; /* Assurez-vous que c'est au-dessus de tout autre contenu */
}

.data-loading {
    background-color: transparent;
    display: flex;
    width: 100%;
    height: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 1000; /* Assurez-vous que c'est au-dessus de tout autre contenu */
}

.loading-logo {
    width: 100px; /* Taille de l'image, ajustez selon votre besoin */
    height: 50px;
    animation: pulse 2.5s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2); /* Agrandit l'image à 120% de sa taille initiale */
    }

    100% {
        transform: scale(1);
    }
}
.tab-wrapper {
    overflow-x: auto;
    margin-right: -16px;
    display: flex;
    gap: 20px;
    padding-bottom: 8px;
    cursor: pointer;
}
.sf-tab {
    padding: 0rem 0rem 0.2rem 0rem !important;
    margin: 0rem 0.4rem !important;
    vertical-align: bottom !important;
    background-color: transparent !important;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
}
.sf-tab-first{
    margin-left: 0rem !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #00b1fd;
    font-weight: 300;
}
.card-header {
    padding: 0.5rem;
    background-color: transparent !important;
}
.card-body {
    /*padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;*/
    padding: 0.5rem !important;
}
.card-header-tabs {
    border-bottom: 1px solid rgb(101, 101, 101) !important;
}
.nav-tabs .nav-link {
    color: #858585;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}
.pb-5rem {
    padding-bottom: 5rem !important;
}
.search-control{

}

    .search-control.form-control {
        padding-top: 0.2rem !important;
        padding-right: 0.5rem;
        padding-bottom: 0.2rem !important;
        padding-left: 0.5rem !important;
        border-width: 1px;
        border-color: #232a31 !important;
        border-radius: 0.5rem;
    }

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

@media (max-width: 992px) {
    /* disable on mobile*/
    .hidden-mobile {
        display: none !important;
    }
}

@media (min-width: 993px) {

    /* disable on desktop*/
    .hidden-desktop {
        display: none !important;
    }
}

code {
    color: #c02d76;
}

.sf-login-shadow-out {
    box-shadow: 0px 0px 20px 6px #00b5f140;
}

.sf-login-shadow-in {
    box-shadow: inset 0px 0px 10px 2px #00b5f140;
}


.gradient-bg-welcome {
    background-color: #0f0e13;
    background-image: radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), radial-gradient(at 40% 0%, hsla(225,39%,30%,1) 0, transparent 50%), radial-gradient(at 100% 100%, rgba(25, 30, 100, 0.336) 0, transparent 50%), radial-gradient(at 100% 0%, rgb(7, 38, 59) 0, transparent 50%);
}

.gradient-bg-navbar {
    background-color: #0f0e13;
    background-image: radial-gradient(at 0% 100%, hsla(253,16%,7%,1) 0, transparent 50%), radial-gradient(at 40% 100%, hsla(225,39%,30%,1) 0, transparent 50%), radial-gradient(at 100% 100%, rgb(7, 38, 59) 0, transparent 50%);
}


.gradient-bg-services {
    background-color: #0f0e13;
    background-image: radial-gradient(at 100% 0%, rgb(25, 30, 100, 0.336) 0, transparent 50%), radial-gradient(at 50% 100%, hsla(225,39%,25%,1) 0, transparent 50%);
}

.gradient-bg-faq {
    background-color: #0f0e13;
    background-image: radial-gradient(at 100% 0%, rgb(25, 30, 100, 0.336) 0, transparent 50%), radial-gradient(at 50% 100%, hsla(225,39%,25%,1) 0, transparent 50%);
}

.gradient-bg-exchanges {
    background-color: #0f0e13;
    background-image: radial-gradient(at 0% 0%, rgb(2, 35, 54) 0, transparent 50%), radial-gradient(at 100% 100%, rgba(25, 30, 100, 0.336) 0, transparent 50%);
}

.gradient-bg-pricing {
    background-color: #0f0e13;
    background-image: radial-gradient(at 0% 100%, rgb(2, 35, 54) 0, transparent 50%), radial-gradient(at 50% 0%, hsla(225,39%,25%,1) 0, transparent 50%);
}

.gradient-bg-footer {
    background-color: #0f0e13;
    background-image: radial-gradient(at 0% 100%, hsla(253,16%,7%,1) 0, transparent 53%), radial-gradient(at 50% 150%, hsla(339,49%,30%,1) 0, transparent 50%);
}

[data-bs-theme="dark"] .blue-glassmorphism {
    background: #00436647 !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

[data-bs-theme="light"] .blue-glassmorphism {
    background: #ffffff96 !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.glassmorphism {
    background: #00000000 !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar-blue-glassmorphism {
    transition: background 1s;
    background: rgba(18, 30, 44, 0.74);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

[data-bs-theme="dark"] .home-body {
    height: 100%;
    background-image: radial-gradient(at 50% 50%, #0dcaf02b 0, transparent 50%);
    color: aliceblue;
}

[data-bs-theme="light"] .home-body {
    height: 100%;
    background-image: radial-gradient(at 50% 50%, #0000002b 0, transparent 50%);
    color: black;
}


::-webkit-scrollbar {
    display: none;
}

.chart-text {
    color: var(--bs-body-color);
}

.ylabel-text {
    width: 50px;
}

@media screen and (max-width: 666px) {
    .ylabel-text {
        width: 50px;
        padding-left: -2rem !important;
        font-size: 0.5rem !important;
    }
}

.search-modal-header {
    border-bottom: none !important;
}

.search-modal-body {
    border-bottom: none !important;
}

.search-modal-footer {
    border-top: none !important;
}


.hx-autosuggest .dropdown-menu {
    width: 100%;
}
    .hx-autosuggest .dropdown-menu .dropdown-item {
        padding: 0.40rem 0.25rem;
    }

.my-tokens-table-container {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
}

.switch-text-left {
    text-align: left !important;
}

.tv-lightweight-charts {
    border-radius: var(--bs-border-radius) !important;
}

.notif-badge-pos {
    top: 35% !important;
    left: 78% !important;
    padding: 0.3rem !important
}
.small-text-btn {
    --bs-btn-font-size: 0.7rem !important;
    --bs-btn-color: #bdbdbd !important;
}
.small-text {
    font-size: 0.875rem !important;
}

.smaller-text {
    font-size: smaller;
}

.selected-btn{
    --bs-btn-color: #00b1fd !important;
    --bs-btn-font-weight: 800 !important;
}
.favorites-icon {
    color: #fdca00 !important;
    font-weight: 800 !important;
}
.thumb-icon {
    color: #4c9edd !important;
    font-weight: 800 !important;
}
.heart-icon {
    color: #fd002a !important;
    font-weight: 800 !important;
}
.wairning-icon {
    color: #fdca00 !important;
    font-weight: 800 !important;
}
.info-icon {
    color: #00aefd !important;
    font-weight: 800 !important;
}
.price-change-lh {
    line-height: 2.3 !important;
}

.positif-signal {
    color: #2da741;
    font-weight: 600;
    font-size: smaller;
}

.negatif-signal {
    color: #f5463b;
    font-weight: 600;
    font-size: smaller;
}

.pending-signal {
    color: #f5463b;
    font-weight: 600;
    font-size: smaller;
}

.sf-element-bg {
    background-color: var(--sf-card-bg) !important;
}

/*
  ______              __                                              __                     
 /      \            |  \                                            |  \                    
|  $$$$$$\  ______  _| $$_     ______    ______    ______    ______   \$$  ______    _______ 
| $$   \$$ |      \|   $$ \   /      \  /      \  /      \  /      \ |  \ /      \  /       \
| $$        \$$$$$$\\$$$$$$  |  $$$$$$\|  $$$$$$\|  $$$$$$\|  $$$$$$\| $$|  $$$$$$\|  $$$$$$$
| $$   __  /      $$ | $$ __ | $$    $$| $$  | $$| $$  | $$| $$   \$$| $$| $$    $$ \$$    \ 
| $$__/  \|  $$$$$$$ | $$|  \| $$$$$$$$| $$__| $$| $$__/ $$| $$      | $$| $$$$$$$$ _\$$$$$$\
 \$$    $$ \$$    $$  \$$  $$ \$$     \ \$$    $$ \$$    $$| $$      | $$ \$$     \|       $$
  \$$$$$$   \$$$$$$$   \$$$$   \$$$$$$$ _\$$$$$$$  \$$$$$$  \$$       \$$  \$$$$$$$ \$$$$$$$ 
                                       |  \__| $$                                            
                                        \$$    $$                                            
                                         \$$$$$$   
*/

.categories-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 2 colonnes par défaut (mobile) */
    gap: 16px;
    padding: 16px;
}

/* Grille en 4 colonnes sur écrans larges */
@media (min-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(1, 1fr); /* 4 ou 1 colonnes sur grand écran */
    }
}

/* Style de chaque carte d'article */
.category-card {
    position: relative;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
}

    .category-card.selected {
        border: 3px solid #1c3e63;
        box-shadow: 0px 0px 17px 0px rgb(0 123 255);
    }
    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4); /* Ajustez l'opacité pour rendre l'image plus sombre */
        z-index: 1;
    }
/* Style du nom de l'article (texte centré) */
.category-name {
    position: relative;
    z-index: 2; /* Assure que le texte est au-dessus de l'overlay */
    background-color: rgb(0 0 0 / 76%); /* Overlay sombre pour le texte */
    padding: 8px 12px;
    border-radius: 4px;
}

.article-container {
    position: relative;
    max-height: 100%;
}

/* Bouton Back toujours visible */
.back-button {
    position: sticky;
    bottom: 6rem;
    left: 100%;
    width: fit-content;
    margin-top: 16px;
    background-color: #000000d1;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 2;
}

.add-button {
    background: #000000b5;
    padding: 0px 7px;
    position: absolute;
    right: 11px;
    top: 10px;
}
@media (min-width: 993px) {

    .back-button {
        bottom: 1rem;
    }
}

    .back-button:hover {
        background-color: #0056b3;
    }

.sf-card-shadow {
    box-shadow: 0 0 10px 4px rgb(0 0 0 / 48%) !important;
}

/*
  ______             __                                            __  __                     
 /      \           |  \                                          |  \|  \                    
|  $$$$$$\ _______  | $$____    ______    ______    ______    ____| $$ \$$ _______    ______  
| $$  | $$|       \ | $$    \  /      \  |      \  /      \  /      $$|  \|       \  /      \ 
| $$  | $$| $$$$$$$\| $$$$$$$\|  $$$$$$\  \$$$$$$\|  $$$$$$\|  $$$$$$$| $$| $$$$$$$\|  $$$$$$\
| $$  | $$| $$  | $$| $$  | $$| $$  | $$ /      $$| $$   \$$| $$  | $$| $$| $$  | $$| $$  | $$
| $$__/ $$| $$  | $$| $$__/ $$| $$__/ $$|  $$$$$$$| $$      | $$__| $$| $$| $$  | $$| $$__| $$
 \$$    $$| $$  | $$| $$    $$ \$$    $$ \$$    $$| $$       \$$    $$| $$| $$  | $$ \$$    $$
  \$$$$$$  \$$   \$$ \$$$$$$$   \$$$$$$   \$$$$$$$ \$$        \$$$$$$$ \$$ \$$   \$$ _\$$$$$$$
                                                                                    |  \__| $$
                                                                                     \$$    $$
                                                                                      \$$$$$$ 
*/

.onboard-text-background {
    background-color: #16344361;
}


.onborading-helper-down {
    border: 1px solid #154050;
    padding: 10px;
    border-radius: 8px;
    position: relative;
    width: 100%;
    top: 100%; /* Positionne le helper sous la carte */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.onborading-helper-up {
    border: 1px solid #154050;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    border-radius: 8px;
    position: relative;
    bottom: 100%; /* Place le helper au-dessus de la carte */
    left: 50%; /* Centre horizontalement */
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.onborading-helper-arrow-up {
    position: absolute;
    top: -10px; /* Positionne la flèche au-dessus du helper */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #154050; /* Couleur de la flèche */
    z-index: 10;
}

.onborading-helper-arrow-down {
    position: absolute;
    bottom: -10px; /* Place la flèche sous le helper */
    left: 50%; /* Centre horizontalement la flèche */
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent; /* Bords transparents */
    border-right: 10px solid transparent;
    border-top: 10px solid #154050; /* Couleur de la flèche */
    border-bottom: none; /* Pas de bord en bas */
    z-index: 10;
}

.onboarding-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    position: relative; /* Relative positioning for placing buttons at the bottom */
}

.onboarding-content {
    max-height: 80%; /* Limit height to 90% of the viewport */
    overflow-y: auto; /* Add vertical scrollbar if content exceeds 90% height */
    padding: 1rem;
    transform: translateY(-10%);
}

.onboarding-navigation {
    position: absolute;
    bottom: 10%; /* 10% from the bottom of the viewport */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust centering due to `left: 50%` */
    display: flex;
    gap: 20px; /* Space between buttons */
}

/*
  ______                 __                               
 /      \               |  \                              
|  $$$$$$\ __   __   __  \$$  ______    ______    ______  
| $$___\$$|  \ |  \ |  \|  \ /      \  /      \  /      \ 
 \$$    \ | $$ | $$ | $$| $$|  $$$$$$\|  $$$$$$\|  $$$$$$\
 _\$$$$$$\| $$ | $$ | $$| $$| $$  | $$| $$    $$| $$   \$$
|  \__| $$| $$_/ $$_/ $$| $$| $$__/ $$| $$$$$$$$| $$      
 \$$    $$ \$$   $$   $$| $$| $$    $$ \$$     \| $$      
  \$$$$$$   \$$$$$\$$$$  \$$| $$$$$$$   \$$$$$$$ \$$      
                            | $$                          
                            | $$                          
                             \$$                    
*/
/* Swiper-specific styles */
.swiper {
    padding-bottom: 20px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}
.news-swiper-container {
    width: 100%;
    margin: 0 auto;
}

.quill-image{
    width: 100%;
}

.news-content {
    margin: 10px 0 5px 23px;
    line-height: 1.4;
    overflow-x: clip;
}

    .news-content p {
        margin-top: 0;
        margin-bottom: 0;
    }
    .news-content p img {
        width: 100%;
    }

.news-short-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}