:root {
    --primary-color: #7289DA;
    --secondary-color: #99AAB5;
    --accent-color: #FFA500;
    --text-color: #FFFFFF;
    --background-color: #2C2F33;
}

.chatbot-list {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.chatbot-list h1 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.chatbot-list .btn-warning {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--background-color);
    font-weight: 600;
}

h1 {
    color: #fff;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}
.form-control {
    width: 100%;
    padding: 12px 15px; /* Augmenté le padding horizontal */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px; /* Augmenté pour un look plus arrondi */
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 16px; /* Ajouté pour une meilleure lisibilité */
    height: auto; /* Ajouté pour s'assurer que la hauteur s'ajuste au contenu */
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px; /* Augmenté le padding */
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 16px; /* Ajouté pour une meilleure lisibilité */
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    /*box-shadow: 0 0 0 2px var(--accent-color);*/
}
.full-width input {
    width: 100%;
}

@keyframes shine {
    0% {
        background-position: -100px;
    }
    100% {
        background-position: 200px;
    }
}

.form-group {
    margin-bottom: 15px;
}
label {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}
form {
    max-width: 100%;
}
.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-group label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.checkbox-group input[type="checkbox"] + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 4px;
    background-color: transparent;
}

.checkbox-group input[type="checkbox"]:checked + label:before {
    background-color: #fff;
}

.checkbox-group input[type="checkbox"]:checked + label:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    width: 4px;
    height: 8px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-group input[type="checkbox"] {
    display: none;
}

.glassmorphic-textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 16px;
    resize: none;
    transition: background 0.3s, color 0.3s;
}

.glassmorphic-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.glassmorphic-textarea:focus,
.glassmorphic-textarea:active {
    background: rgba(255, 255, 255, 0.2);
    color: #000;
    outline: none;
}

#tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 500;
}

.close-button {
    margin-left: 10px;
    cursor: pointer;
    color: #f3eaea;
    font-weight: bold;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 1); /* Couleur blanche opaque */
    font-weight: 500; /* Poids de la police */
}

/* Style glassmorphic pour les champs de formulaire */
input, textarea {
    background: rgba(237, 233, 233, 0.1); /* Fond semi-transparent */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Bordure semi-transparente */
    backdrop-filter: blur(10px); /* Effet de flou */
    border-radius: 10px; /* Coins arrondis */
    padding: 10px; /* Espacement interne */
    color: #fff; /* Couleur du texte */
    font-weight: 500; /* Poids de la police */
}

.form-group select {
    width: 100%;
    padding: 5px 10px; /* Ajuster le padding pour remonter le texte */
    padding-right: 30px; /* Espace pour la flèche personnalisée */
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    appearance: none; /* Masquer la flèche par défaut */
    -webkit-appearance: none; /* Masquer la flèche par défaut sur Safari */
    position: relative;
    height: 40px; /* Définir la hauteur de l'élément */
    line-height: 20px; /* Ajuster la hauteur de ligne pour remonter le texte */
}

.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.5);
}

.form-group select::after {
    content: '▼'; /* Flèche personnalisée */
    font-size: 12px;
    color: #fff;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Empêcher les clics sur la flèche */
}

/* Ajoutez ces styles à la fin de votre fichier form.css */

.form-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-step h3 {
    margin-bottom: 20px;
}

.progress {
    height: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--mint-color);
    transition: width 0.3s ease;
}

.glassmorphic {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 15px;
    color: #fff;
}

.glassmorphic:focus {
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-color);
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.input-group {
    display: flex;
    align-items: stretch;
}

.input-group .form-control {
    flex: 1 1 auto;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-append {
    display: flex;
    margin-left: -1px;
}

.input-group-append .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px; /* Ajustez cette valeur selon vos besoins */
    margin-top: 0px;
}

#toggleDiscordInfo {
    color: #fff;
    transition: all 0.3s ease;
    height: 100%;
}

#discordTokenInfo {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
}

#discordTokenInfo h5 {
    margin-bottom: 15px;
}

#discordTokenInfo ol {
    padding-left: 20px;
}

#discordTokenInfo li {
    margin-bottom: 10px;
}

#discordTokenInfo a {
    color: var(--mint-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

#discordTokenInfo a:hover {
    text-decoration: underline;
}

#discordTokenInfo p {
    margin-top: 15px;
    font-style: italic;
}

.custom-select {
    appearance: none;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 8px 10px;
}
.chart-container {
    position: relative;
    height: 40vh;
    width: 100%;
}


.bot-actions .btn {
    padding: 5px 10px;
    font-size: 14px;
}

.btn-secondary.disabled, .btn-secondary:disabled, .btn-secondary.disabled:hover {
    color: #fff;
    background-color: #83838345;
    border-color: #ffffff2b;
}

/* Styles for login and registration forms */
.registration-container {
    max-width: 450px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 15px;
    height: auto;
    font-size: 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    border-color: var(--accent-color);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-discord {
    background-color: #7289DA;
    border-color: #7289DA;
    color: white;
}

.btn-discord:hover {
    background-color: #5E78D1;
    border-color: #5E78D1;
}

.btn-mint {
    background-color: var(--mint-color);
    border-color: var(--mint-color);
    color: #fff;
}


.btn-mint:hover {
    background-color: #7cffa7;
    border-color: var(--mint-color);
}

.btn-mint.disabled:hover {
    border-color: var(--mint-color);
    color: #020e01a8;
}
.custom-control-label {
    color: #fff;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--mint-color);
    border-color: var(--mint-color);
}

.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-muted a {
    color: var(--mint-color);
    text-decoration: none;
}

.text-muted a:hover {
    text-decoration: underline;
}

/* Style for input placeholders */
.form-control::placeholder {
    color: rgba(255, 255, 255, 1); /* Couleur blanche opaque */
    font-weight: 500; /* Poids de la police */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* Effet glossy */
}

/* Styles for different browsers */
.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.form-control::-moz-placeholder { /* Firefox 19+ */
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.form-control:-ms-input-placeholder { /* IE 10+ */
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.form-control:-moz-placeholder { /* Firefox 18- */
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.registration-container {
    max-width: 450px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.password-strength-meter {
    height: 4px;
    background-color: #ddd;
    margin-top: 0.5rem;
    border-radius: 2px;
    overflow: hidden;
}
.password-strength-meter div {
    height: 100%;
    width: 0;
    transition: width 0.3s ease-in-out;
}
.consent-group {
    margin-top: 1.5rem;
}
.btn-oauth {
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.btn-oauth i {
    margin-right: 0.5rem;
}
.btn-submit {
    width: 100%;
    padding: 0.75rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Tooltip styles */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Placeholder styles */
::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Progress bar styles */
.progress-bar {
    height: 5px;
    background-color: var(--mint-color);
    width: 0;
    transition: width 0.3s ease;
}

/* Validation feedback styles */
.form-control.is-valid {
    border-color: var(--mint-color);
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .form-step {
        padding: 15px;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px 0;
}
.pricing-card {
    position: relative;
    border-radius: 15px;
    padding: 20px;

    flex: 1 1 200px;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18); /* Bordure légère pour l'effet glossy */
}

.pricing-card h2 {
    margin-top: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    text-align: center;
}
.pricing-card p {
    font-size: 1.2em;
    color: #e3e3e3;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding-left: 20px;
}
.pricing-card ul li {
    margin: 10px 0;
    text-align: left;
}
.pricing-card ul li::before {
    content: '✔';
    margin-right: 8px;
    color: #98FF98; /* Vert menthe */
}
.pricing-card button {
    background-color: rgba(255, 18, 18, 0.7);
    color: white;
    border: none;
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
    margin-top: auto;
    transition: background-color 0.3s, transform 0.3s;
}
.pricing-card button:hover {
    background-color: rgb(255, 0, 47);
    transform: scale(1.05);
}
.pricing-card {
    display: none;
}
.pricing-card.monthly {
    display: block;
}
.pricing-card h2 {
    margin-top: 0;
    font-family: 'Roboto', sans-serif; /* Police moderne */
    color: #350000; /* Couleur plus sombre et élégante */
    font-size: 1.8em; /* Taille de police augmentée */
}

.toggle-button {
    cursor: pointer;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 75px;
    height: 36px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cccccc;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: rgb(223 255 0 / 76%);
    box-shadow: inset 0 4px 30px rgba(0, 0, 0, 0.1); /* Effet creux */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 16px;
    resize: none;
    transition: background 0.3s, color 0.3s;
}

input:checked + .slider {
    background-color: rgb(179, 253, 41);
}
input:checked + .slider:before {
    transform: translateX(39px); /* Ajuster la position du curseur */
}
.slider.round {
    border-radius: 34px;
}
.slider-text {
    position: absolute;
    width: 100%;
    text-align: center;
}
.center-container {
    display: flex;
    justify-content: center;
    height: 100%; /* Prendre toute la hauteur disponible */
}
.pricing-card.special {
    border: 2px solid gold;
    position: relative;
}

.best-seller {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: gold;
    color: black;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 5px;
    transform: rotate(2deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.upper-card {
    margin-bottom: auto;
}
  
.lower-card {
margin-top: auto;
}

.jumbotron-custom {
    background-color: rgb(255 255 255 / 16%); 
    padding: 2rem;
    border-radius: 1.3rem;
}

.jumbotron-text {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
}

.jumbotron-custom h1.display-4 {
    font-size: 3rem;
    font-weight: 600;
}

.pricing-card.current-plan {
    opacity: 0.7;
    pointer-events: none;
}

.pricing-card.current-plan::after {
    content: "Current Plan";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
}

.pricing-card-content {
    flex-grow: 1;
}

.subscription-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Arial', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.toggle-label {
    font-size: 1rem;
    margin: 0 1rem;
    color: #ffffff;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2fe167e0;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 2px solid #2fe167e0;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: -35px;
    background: #2fe167e0;
    color: #ffffff;
    padding: 5px 40px;
    font-size: 0.8rem;
    transform: rotate(45deg);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price {
    font-size: 1rem; /* Taille réduite */
    font-weight: bold;
    color: #ebebeb;
}

.price-period {
    font-size: 0.9rem; /* Taille réduite */
    color: #ffffff;
    margin-left: 0.25rem;
}

.features-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✓";
    color: var(--mint-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.cta-button {
    background-color: var(--mint-color);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.cta-button:hover {
    background-color: #72fa9de0;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.btn-mint.disabled,
.btn-mint:disabled {
    background-color: #83838345;
    border-color: #ffffff2b;
    color: #ffffff80;
    cursor: not-allowed;
}

.btn-mint.disabled:hover,
.btn-mint:disabled:hover {
    background-color: #83838345;
    border-color: #ffffff2b;
    color: #ffffff80;
}

/* Mise à jour des styles pour les boutons d'édition */
.btn-edit, .btn-delete, .btn-info {
    padding: 8px 12px; /* Réduit le padding horizontal */
    margin: 0 3px; /* Réduit les marges */
    font-size: 0.85rem; /* Réduit légèrement la taille de la police */
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* Réduit l'espace entre l'icône et le texte */
    min-width: 100px; /* Réduit la largeur minimale */
    height: 34px; /* Réduit légèrement la hauteur */
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
}

.btn-edit i, .btn-delete i, .btn-info i {
    font-size: 0.9rem;
}

/* Ajustement du conteneur des boutons */
.bot-actions {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    gap: 5px; /* Espace uniforme entre les boutons */
    margin-top: 15px;
    flex-wrap: nowrap; /* Empêche les boutons de passer à la ligne */
    align-items: center;
    justify-content: center;
}

/* Style du bouton create bot */
.btn-create-bot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: var(--mint-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    min-width: 100px;
}

.btn-create-bot:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(47, 225, 103, 0.3);
    background-color: #72fa9de0;
}

/* Adaptation mobile */
@media (max-width: 768px) {
    .btn-create-bot {
        padding: 8px 16px;
        font-size: 0.9rem;
        min-width: 80px;
    }
    
    .btn-create-bot i {
        font-size: 0.9rem;
    }
    
    /* Ajustement de l'espacement dans le header */
    .d-flex.justify-content-between.align-items-center.mb-4 {
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    /* Ajustement du titre pour éviter le débordement */
    .h1.font-weight-bold.white-text {
        font-size: 1.5rem;
    }
}

.btn-back {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

.gap-3 {
    gap: 1rem;
}


.small {
    font-size: 0.875rem;
}