/* Layout-Varianten */
html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

/* Default Layout */
.default-layout .container {
    max-width: 1200px;
    padding: 1rem;
}

/* Compact Layout */
.compact-layout .container {
    max-width: 1000px;
    padding: 0.5rem;
}

/* Wide Layout */
.wide-layout .container {
    max-width: 1400px;
    padding: 1.5rem;
}

/* Theme-spezifische Anpassungen */
.theme-selector {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    border: 2px solid transparent;
}

.theme-selector.active {
    border-color: #fff;
}

/* Card Styling */
.card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Bootswatch Integration */
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--bs-primary);
}

.dropdown-toggle {
    color: #ddd;
}

.dropdown-toggle:hover {
    color: #fff;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {

    .wide-layout .container,
    .default-layout .container,
    .compact-layout .container {
        padding: 0.5rem;
    }
}