/* Position des Theme-Switchers unten links */
#theme-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

/* Design des Switcher-Containers */
#theme-container {
    display: none;
    background-color: #212529; /* Feste dunkle Hintergrundfarbe */
    color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Design der Umschalt-Schaltfläche */
#theme-toggle-btn {
    background-color: #343a40; /* Feste dunkle Hintergrundfarbe */
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Animation für den Switcher */
.slide-in {
    animation: slideIn 0.3s forwards;
}

.slide-out {
    animation: slideOut 0.3s forwards;
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(20px); opacity: 0; }
}

/* Theme-Switcher Buttons */
.theme-btn {
    width: 100%;
    margin: 5px 0;
}