.toggle-container {
    position: relative;
    width: 50px;
    height: 25px;
}

.toggle-checkbox {
    display: none;
}

.toggle-label {
    width: 100%;
    height: 100%;
    background: #ddd; /* Light gray for light mode */
    border-radius: 15px;
    border: 2px solid #ccc; /* Subtle border */
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: background 0.3s, border 0.3s;
}

.toggle-label::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    left: 2px;
    transition: transform 0.3s, background 0.3s;
}

/* Dark Mode */
body[data-bs-theme="dark"] .toggle-label {
    background: #222; /* Dark gray for dark mode */
    border: 2px solid #444;
}

body[data-bs-theme="dark"] .toggle-label::after {
    background: white;
    transform: translateX(24px);
}
