/* Styles généraux */
:root[data-theme="light"] {
    --background-color: #9cc0ef;
    --gradient-start: #c6dcf6;
    --gradient-end: #4995eb;
    --text-color: #27279c;
    --container-bg: #c3cff7;
    --shadow-color: rgba(39, 39, 156, 0.1);
    --button-bg: #27279c;
    --button-color: #ffffff;
    --button-hover: #1a1a7a;
    --glow-color: rgba(39, 39, 156, 0.2);
    --footer-bg: rgba(255, 255, 255, 0.95);
    --footer-text: #27279c;
    --home-button-bg: rgba(255, 255, 255, 0.95);
    --home-button-color: #27279c;
    --input-bg: #ffffff;
}

:root[data-theme="dark"] {
    --background-color: #080816;
    --gradient-start: #0d0d1f;
    --gradient-end: #1a1a35;
    --text-color: #cfcff5; /* Changer de #10107f à #e0e0ff pour une meilleure lisibilité */
    --container-bg: #1e1e3f;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --button-bg: #3939cc;
    --button-color: #ffffff;
    --button-hover: #4444dd;
    --glow-color: rgba(68, 68, 204, 0.3);
    --footer-bg: rgba(13, 13, 31, 0.95);
    --footer-text: #a0a0ff;
    --home-button-bg: rgba(13, 13, 31, 0.9);
    --home-button-color: #ffffff;
    --input-bg: #242450;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: all 0.3s ease;
}

html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Navigation styles */
nav {
    position: relative;
    width: 100%;
    background: linear-gradient(to right, #27279c, #4487d3); /* Bleu marine à bleu normal */
    padding: 10px 20px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    background-color: #27279c; /* Bleu marine */
    border-radius: 25px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #4487d3; /* Bleu normal */
}

.nav-buttons {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Center the links */
    flex: 1;
}

.nav-buttons li {
    margin: 0 10px;
}

.nav-buttons a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #444;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-buttons a:hover {
    background-color: #555;
}

/* Menu toggle button */
.menu-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 1000;
    background: none;
    border: none;
    padding: 10px;
}

.menu-toggle i {
    font-size: 24px;
    color: white;
}

/* Wrapper pour centrer le contenu dans toutes les pages */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    flex: 1;
    text-align: center;
}

/* Conteneur principal */
.container {
    max-width: 800px;
    width: 90%;
    padding: 25px;
    background-color: var(--container-bg);
    box-shadow: 0 0 20px var(--shadow-color),
                0 0 60px var(--glow-color);
    border-radius: 15px;
    margin: 20px auto; /* Augmenter la marge pour laisser de la place au ticker */
    flex: 1; /* Ensure the container takes up available space */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 39, 156, 0.1);
}

.container:hover {
    box-shadow: 0 0 25px var(--shadow-color),
                0 0 80px var(--glow-color);
    transform: translateY(-5px);
}

/* Header */
header {
    background: linear-gradient(to right, #27279c, #4487d3); /* Bleu marine à bleu normal */
    color: rgb(107, 137, 211);
    padding: 20px 0;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* Boutons */
.button, input[type="file"], input[type="submit"], button {
    display: inline-block;
    margin: 10px 5px;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--button-color);
    text-decoration: none;
    background-color: var(--button-bg);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(57, 57, 204, 0.3);
}

.button {
    background-color: var(--button-bg);
    color: var(--button-color);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button i {
    margin-right: 5px;
}

.button:hover, input[type="file"]:hover, input[type="submit"]:hover, button:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(68, 68, 221, 0.4);
}

input[type="range"] {
    width: 100%;
    margin: 10px 0;
}

#copyButton {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
    color: #27279c; /* Bleu marine */
}

#copyButton:hover {
    color: #4487d3; /* Bleu normal */
}

/* Boutons de retour à l'accueil */
.home-button {
    position: absolute;
    top: 50px; /* Ajuster la position pour être sous le ticker */
    left: 10px;
    background-color: var(--home-button-bg);
    color: var(--home-button-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 0 10px var(--shadow-color);
    transition: all 0.3s ease;
}

.home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--shadow-color);
}

.home-button i {
    margin-right: 5px;
}

.home-button:hover {
    background-color: #555;
}

/* Home button position adjustment for currency converter page */
.home-button {
    position: absolute;
    top: 60px; /* Augmenté de 50px à 60px */
    left: 10px;
    background-color: #444;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

/* Footer */
footer {
    width: 100%;
    text-align: center;
    background: linear-gradient(to right, #27279c, #4487d3); /* Bleu marine à bleu normal */
    color: white;
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    text-align: center;
    padding: 15px;
    margin-top: auto;
    width: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer {
    background: linear-gradient(to right, #27279c, #4487d3); /* Bleu marine à bleu normal */
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: auto; /* Push footer to the bottom */
}

/* Lien pour retourner à l'accueil */
.wrapper .button {
    margin-top: 20px;
}

/* Responsive pour petits écrans */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    header p {
        font-size: 1em;
    }

    .button, input[type="file"], input[type="submit"], button {
        padding: 8px 15px;
        font-size: 14px;
    }

    nav {
        padding: 15px 0;
    }

    .nav-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-buttons li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
    }

    .nav-buttons.active {
        display: flex;
    }

    .nav-buttons {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 128, 0.95); /* Bleu marine */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .nav-buttons.active {
        display: flex;
    }

    .nav-buttons li {
        margin: 15px 0;
    }

    .nav-buttons a {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    .home-button {
        top: 65px; /* Augmenté de 55px à 65px */
    }

    .home-button {
        position: fixed;
        top: 55px;
        left: 15px;
    }

    .container {
        margin-top: 110px; /* Increased top margin for mobile */
        width: 95%;
        padding: 15px;
    }
}

/* Styles pour l'aperçu de l'image */
#previewContainer {
    margin-top: 20px;
    max-width: 100%;
    max-height: 400px;
    overflow: hidden;
}

#previewContainer img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

#qrcode {
    display: flex;
    justify-content: center;
    align-items: center;
}

.password-result-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: var(--container-bg);
    border: 2px solid var(--button-bg);
}

#passwordResult {
    font-family: monospace;
    font-size: 1.2em;
    color: var(--text-color);
    word-break: break-all;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    margin-right: 10px;
    background-color: var(--input-bg);
}

#copyButton {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5em;
    color: var(--text-color);
    transition: all 0.3s ease;
}

#copyButton:hover {
    color: var(--button-hover);
    transform: scale(1.1);
}

.password-result-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

#passwordResult {
    margin-right: 10px;
    font-size: 1.2em;
    word-break: break-all;
}

/* Home button */
.home-button {
    position: absolute;
    top: 50px; /* Ajuster la position pour être sous le ticker */
    left: 10px;
    background-color: #444;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    display: flex;
    align-items: center;
}

.home-button i {
    margin-right: 5px;
}

.home-button:hover {
    background-color: #555;
}

/* Styles for select with flags */
select {
    padding-right: 30px; /* Add space for the flag */
    background-position: right 10px center;
    background-size: 20px 20px;
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: var(--input-bg);
    color: var(--text-color);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

select:focus {
    border-color: #27279c;
    outline: none;
}

.result-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.result {
    display: none;
    font-size: 1.2em;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 8px;
    min-width: 200px;
    margin-top: 20px;
}

.result:not(:empty) {
    display: block;
}

.copy-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    color: #27279c;
    padding: 5px;
}

.copy-button:hover {
    color: #4487d3;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

input[type="text"] {
    width: calc(100% - 20px); /* Adjust width to fit within container */
    padding: 10px;
    margin: 10px auto; /* Center the input */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in width */
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    .container {
        width: 95%;
        padding: 15px;
    }

    .button {
        padding: 8px 15px;
        font-size: 14px;
    }

    select {
        height: 45px;
        font-size: 14px;
        padding: 8px 12px;
    }

    .result {
        font-size: 1em;
        padding: 12px;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    select {
        height: 40px;
        font-size: 13px;
        padding: 6px 10px;
    }
}

/* Ajoutez ces styles à votre fichier CSS existant */

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--button-bg);
    color: var(--button-color);
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s;
    box-shadow: 0 0 10px rgba(57, 57, 204, 0.3);
}

.social-button:hover {
    background-color: var(--button-hover);
    box-shadow: 0 0 15px rgba(68, 68, 221, 0.4);
    transform: translateY(-2px);
}

.social-button i {
    margin-right: 10px;
}

/* Mise à jour des styles du formulaire de contact */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1.1em;
    transition: border-color 0.3s ease;
    background-color: var(--input-bg);
    color: var(--text-color);
    border: 2px solid var(--button-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #27279c;
    outline: none;
}

.form-group input {
    height: 50px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 1em;
    }

    .form-group input {
        height: 45px;
    }

    .form-group textarea {
        min-height: 120px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 10px;
    }

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

    .form-group input {
        height: 40px;
    }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        padding: 10px;
    }
}

.password-strength {
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.strength-bar {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-progress {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.9em;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-top: 5px;
}

.ticker-container {
    width: 100%;
    background-color: #27279c;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    height: 40px;
}

.search-box {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.search-box input {
    padding: 10px 15px;
    border: 2px solid #27279c;
    border-radius: 25px;
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    background-color: var(--input-bg);
    color: var(--text-color);
    border: 2px solid var(--button-bg);
}

.weather-container {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    background-color: var(--container-bg);
    transition: all 0.3s ease;
}

.weather-info {
    text-align: center;
}

.weather-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.weather-main img {
    width: 100px;
    height: 100px;
}

.temperature {
    font-size: 3em;
    font-weight: bold;
    color: #27279c;
}

.weather-details {
    margin-top: 20px;
    font-size: 1.2em;
}

.weather-details p {
    margin: 10px 0;
}

.search-input-container {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid var(--button-bg);
    background-color: var(--container-bg);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.suggestion-item:hover {
    background-color: var(--button-bg);
    color: var(--button-color);
}

.forecast-toggle {
    margin: 20px 0;
    text-align: center;
}

.toggle-btn {
    background: #27279c;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: var(--button-bg);
    color: var(--button-color);
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: #4487d3;
}

.forecast-toggle .toggle-btn:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
}

.forecast-container {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
}

/* Mise à jour des styles des prévisions */
.forecast-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    gap: 15px;
    scrollbar-width: thin;
    scrollbar-color: #27279c #f0f0f0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    margin-bottom: 10px; /* Pour la barre de défilement */
}

/* Style de la barre de défilement */
.forecast-scroll::-webkit-scrollbar {
    height: 8px;
}

.forecast-scroll::-webkit-scrollbar-track {
    background: var(--container-bg);
    border-radius: 4px;
}

.forecast-scroll::-webkit-scrollbar-thumb {
    background: var(--button-bg);
    border-radius: 4px;
}

.forecast-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--button-hover);
}

.forecast-card {
    min-width: 110px;
    max-width: 120px;
    padding: 12px;
    background: var(--container-bg);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 0 0 auto;
    color: var(--text-color);
}

.forecast-date {
    font-size: 0.9em;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 5px;
}

.forecast-temp {
    font-weight: bold;
    color: var(--text-color);
}

.max-temp {
    color: #ff7070;
    margin-right: 5px;
}

.min-temp {
    color: #70a7ff;
}

/* Ajustements responsives */
@media (max-width: 768px) {
    .forecast-card {
        min-width: 85px;
        max-width: 100px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .forecast-card {
        min-width: 75px;
        max-width: 90px;
        padding: 8px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .forecast-card {
        min-width: 90px;
        padding: 10px;
    }

    .forecast-date {
        font-size: 0.8em;
    }

    .forecast-temp {
        font-size: 0.85em;
    }

    .weather-container {
        padding: 15px;
    }

    .weather-details {
        font-size: 1em;
    }

    .temperature {
        font-size: 2.5em;
    }

    .weather-main img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .forecast-card {
        min-width: 80px;
        padding: 8px;
    }

    .forecast-date {
        font-size: 0.75em;
    }

    .forecast-card img {
        width: 40px;
        height: 40px;
    }
}

.forecast-scroll {
    display: flex;
    overflow-x: auto;
    padding: 20px 0;
    gap: 20px;
    scrollbar-width: thin;
    scrollbar-color: #27279c #f0f0f0;
}

.forecast-card {
    min-width: 120px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.forecast-card img {
    width: 50px;
    height: 50px;
}

.forecast-date {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.forecast-temp {
    font-weight: bold;
    color: #27279c;
}

.max-temp {
    color: #e74c3c;
    margin-right: 5px;
}

.min-temp {
    color: #3498db;
}

/* Ajout du bouton de thème */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: var(--container-bg);
    color: var(--text-color);
    border: 2px solid var(--text-color);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--button-bg);
    color: var(--button-color);
    transform: translateY(-2px);
}

/* Ajoutez ces règles dans votre fichier CSS */

/* Style général pour les labels de formulaire */
.form-group label {
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* Style pour les inputs et textareas */
.form-group input,
.form-group textarea {
    background-color: var(--container-bg);
    color: var(--text-color);
    border: 2px solid var(--text-color);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--button-bg);
    box-shadow: 0 0 5px var(--glow-color);
}

/* Style pour les selects (pages devises) */
select {
    background-color: var(--container-bg);
    color: var(--text-color);
    border: 2px solid var(--text-color);
    transition: all 0.3s ease;
}

select:focus {
    border-color: var(--button-bg);
    box-shadow: 0 0 5px var(--glow-color);
}

/* Style pour les placeholders */
::placeholder {
    color: var(--text-color);
    opacity: 0.7;
}

/* Style pour les labels de la page password */
.password-options label {
    color: var(--text-color);
}

/* Style pour tout texte dans les formulaires */
input, textarea, select, label, option {
    color: var(--text-color);
}

/* Ajustement des cartes projets */
.project-card {
    background-color: var(--container-bg);
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--shadow-color);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--glow-color);
}

.strength-bar {
    height: 10px;
    background-color: var(--input-bg);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
    border: 1px solid var(--button-bg);
}

.strength-text {
    font-size: 0.9em;
    font-weight: bold;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}