:root {
    --bg-dark: #000000;
    --bg-card: #1A1A1A;
    --bg-header: #000000;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --border-color: #333333;
    --hover-color: #2A2A2A;
    --category-bg: #000000;
    --category-border: #333333;
    --category-text: #FFFFFF;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

/* Hauptseiten-spezifische Styles */
body.drinks-page {
    overflow: hidden;
}

.fullscreen-container {
    height: calc(100vh - 1rem);
    width: calc(100vw - 1rem);
    margin: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.content-area {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    padding-bottom: 1.5rem; /* Reduziert von 3.5rem */
}

#drinksList {
    flex: 7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.drinks-container {
    flex: 1;
    overflow: hidden;
    display: flex;
    height: 100%;
}

.drinks-row {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: stretch;
}

.category-column {
    flex: 1;
    overflow-y: auto;
    padding: 0 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Platzhalter für zusätzlichen Content */
.additional-content {
    flex: 3;
    overflow: hidden;
    background-color: var(--bg-dark);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drink-ad {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.drink-ad.active {
    opacity: 1;
}

.drink-ad img {
    width: 80%;
    height: 60vh;
    object-fit: contain;
    margin-bottom: 2rem;
    transform-origin: center center;
}

.drink-ad.active img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.drink-ad .drink-name {
    font-size: 3rem;
    color: var(--text-primary);
    text-align: center;
}

.drink-ad .drink-price {
    font-size: 2.5rem;
    color: #a50775;
    font-weight: bold;
    text-align: center;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    20%, 80% { opacity: 1; }
}

.category-container {
    margin-bottom: 0.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-header {
    position: sticky;
    top: 0;
    background-color: var(--bg-dark);
    padding: 0.25rem 0;
    z-index: 1;
}

.category-header h2 {
    color: var(--category-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-size: clamp(0.95rem, 2vh, 1.2rem);
    padding-bottom: 0.15rem;
}

.drinks-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.card {
    transition: all 0.3s ease;
    margin-bottom: 0.15rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Spezielle Card-Styles für Haupttheke und Jugendkarte */
body.haupttheke .card,
body.jugendliche .card,
body.theke-hinten .card {
    background-color: #000;
    border: none;
    border-left: 1px solid #a50775;
}

/* Spezielle Additives-Info Styles für Haupttheke und Jugendkarte */
body.haupttheke .additives-info,
body.jugendliche .additives-info,
body.theke-hinten .additives-info {
    font-size: 0.75rem;
}

.card-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--text-primary);
    font-size: clamp(0.9rem, 1.8vh, 1.2rem);
    margin-bottom: 0 !important;
    line-height: 1.2;
}

.drink-name {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.additives-info {
    display: inline;
    color: var(--text-secondary);
    font-size: 0.7em;
    opacity: 0.8;
    margin-left: 0.35rem;
}

/* Schriftgrößen basierend auf Viewport-Höhe */
h1 {
    font-size: clamp(1.5rem, 3vh, 2.5rem);
    margin-bottom: 0.5rem !important;
    color: var(--text-primary);
}

h2 {
    font-size: clamp(1rem, 2.2vh, 1.3rem);
    color: var(--text-primary);
    margin: 0;
    padding-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kompakteres Layout für die Getränkekarten */
.card {
    margin-bottom: 0.15rem;
}

.card-title {
    font-size: clamp(0.9rem, 1.8vh, 1.2rem);
    margin-bottom: 0 !important;
    line-height: 1.2;
}

.drinks-list {
    gap: 0.15rem;
}

.category-container {
    margin-bottom: 0.25rem;
}

.category-header {
    padding: 0.25rem 0;
}

.category-header h2 {
    font-size: clamp(0.95rem, 2vh, 1.2rem);
    padding-bottom: 0.15rem;
}

/* Anpassung der Preisanzeige */
.card-title .float-end {
    white-space: nowrap;
    font-size: 0.95em;
}

.additives-info {
    font-size: 0.7em;
    opacity: 0.8;
    margin: 0;
    color: var(--text-secondary);
}

/* Trennzeichen für Preise */
.float-end > span:not(:last-child)::after {
    content: '/';
    margin: 0 0.25rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Noch kompakteres Layout für niedrige Bildschirme */
@media screen and (max-height: 800px) {
    .card-title {
        font-size: clamp(0.85rem, 1.6vh, 1.1rem);
    }
    
    .category-header h2 {
        font-size: clamp(0.9rem, 1.8vh, 1.15rem);
    }
}

/* Noch kompakteres Layout für sehr niedrige Bildschirme */
@media screen and (max-height: 600px) {
    .category-container {
        margin-bottom: 0.15rem;
    }
    
    .card {
        margin-bottom: 0.1rem;
    }
    
    .drinks-list {
        gap: 0.1rem;
    }
}

/* Admin-spezifische Styles */
.admin-container {
    padding: 1rem;
    color: #333333;
    background-color: #ffffff;
}

.version-info {
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

/* Helles Theme für Admin-Tabellen */
.table {
    color: #333333;
    background-color: #ffffff;
}

.table > thead {
    background-color: #f8f9fa;
}

.table > tbody > tr > td {
    vertical-align: middle;
    border-color: #dee2e6;
    background-color: #ffffff;
}

.form-switch {
    padding-left: 2.5em;
}

.form-check-input {
    cursor: pointer;
    background-color: #ffffff;
    border-color: #dee2e6;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Admin-spezifische Überschriften */
.admin-container h1,
.admin-container h2 {
    color: #333333;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444444;
}

/* Responsive Anpassungen für Breite */
@media (max-width: 767px) {
    .content-area {
        flex-direction: column;
    }

    #drinksList {
        flex: 1;
    }

    .additional-content {
        display: none;
    }
}

/* Kategorie-Überschriften */
h2 {
    font-size: 1.5rem;
    color: #333;
}

@media (max-width: 991px) {
    .category-container {
        width: calc(50% - 1rem) !important;
    }
}

@media (max-width: 767px) {
    .category-container {
        width: 100% !important;
    }
}

/* Responsive Anpassungen */
@media (max-width: 767px) {
    .content-area {
        flex-direction: column;
    }

    #drinksList {
        flex: 1;
    }

    .additional-content {
        display: none;
    }
}

.middle-column {
    position: relative;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Haupttheken-spezifische Styles */
body.haupttheke {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    --bg-dark: #000000;
    --bg-card: #1A1A1A;
    --bg-header: #000000;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --border-color: #333333;
    --hover-color: #2A2A2A;
    --category-bg: #000000;
    --category-border: #333333;
    --category-text: #FFFFFF;
}

body.haupttheke .content-area {
    flex-direction: column;
}

body.haupttheke .drinks-container {
    width: 100%;
    height: 100%;
}

body.haupttheke .drinks-row {
    display: flex;
    width: 100%;
    height: 100%;
}

body.haupttheke .category-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    overflow: hidden;
    justify-content: space-between;
}

body.haupttheke .category-column > *:not(:last-child) {
    margin-bottom: auto;
}

body.haupttheke .category-column > *:last-child {
    margin-top: 1rem;
}

body.haupttheke .middle-column {
    position: relative;
}

body.haupttheke .additional-content {
    position: relative;
    height: 20vh;
    /* min-height: 150px; */
    min-height: 739.3px;
    margin-bottom: 1rem;
    background-color: var(--bg-dark);
    border-radius: 8px;
    overflow: hidden;
}

body.haupttheke .drink-ad {
    position: absolute;
    top: 8rem;
    left: 0;
    width: 100%;
    height: 75%;
}

body.haupttheke .drink-ad img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.haupttheke .drink-ad .drink-name {
    font-size: 2rem;
}

body.haupttheke .drink-ad .drink-price {
    font-size: 1.8rem;
}

/* Theke-hinten spezifische Styles */
body.theke-hinten .category-header h2 {
    font-size: 1.7rem;
}

body.theke-hinten .card-title {
    font-size: 1.45rem;
}

body.theke-hinten .drinks-row {
    align-items: flex-start;
}

body.theke-hinten .category-container {
    margin-bottom: 1.5rem;
}

/* Theke-hinten Werbung kompakter */
body.theke-hinten .drink-ad {
    position: absolute;
    width: 100%;
    height: auto;
    max-height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.theke-hinten .drink-ad.active {
    opacity: 1;
}

body.theke-hinten .drink-ad img {
    width: 90%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transform-origin: center center;
}

body.theke-hinten .drink-ad.active img {
    animation: float 6s ease-in-out infinite;
}

body.theke-hinten .drink-ad .drink-name {
    font-size: 2.5rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.75rem;
}

body.theke-hinten .drink-ad .drink-price {
    font-size: 2rem;
    color: #a50775;
    font-weight: bold;
    text-align: center;
}

/* Zusatzstoffe Container Styles - Allgemein */
.additives-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 0 0.75rem 0.75rem 0.75rem; /* Angepasstes Padding */
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(165, 7, 117, 0.1);
}

.additives-content {
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
}

.additives-content small {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    display: block;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .additives-content small {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Logo Styles */
.logo-container {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 15vh;
}

/* Haupttheken-spezifische Logo Styles */
body.haupttheke .logo-container {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

body.haupttheke .logo-image {
    max-height: 15vh;
}

/* Admin Tabs Styling */
.nav-tabs .nav-link {
    color: #333333;
    border: 1px solid #dee2e6;
    margin-right: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.nav-tabs .nav-link:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.nav-tabs .nav-link.active {
    color: #0d6efd;
    font-weight: 500;
    border-color: #dee2e6 #dee2e6 #fff;
}

/* Zusatzstoff-Auswahl Styling */
.additive-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    margin: 0.1rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
    cursor: default;
}

.additive-options {
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
}

.additive-option {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.additive-option:hover {
    background-color: #f8f9fa;
}

.additive-option.selected {
    background-color: #e7f1ff;
    border-color: #b8daff;
}

.additive-option input[type="checkbox"] {
    margin-right: 1rem;
}

.additive-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background-color: #6c757d;
    color: white;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.edit-additives-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    width: 100%;
}

/* Jugendkarten-spezifische Styles */
body.jugendliche .content-area {
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.jugendliche .drinks-container {
    flex: 1;
    min-height: 60%;
}

body.jugendliche .jugend-ads-container {
    flex: 1;
    min-height: 40%;
    max-height: 40%;
    position: relative;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
    display: flex;
}

body.jugendliche .social-app-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    min-width: 500px;
    max-width: 500px;
}

/* Entferne den Glow-Effekt */
body.jugendliche .social-app-container::after {
    display: none;
}

body.jugendliche .social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(165, 7, 117, 0.3);
    border-radius: 4px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px rgba(165, 7, 117, 0.1);
    width: 90%;
    margin: 0 auto;
}

body.jugendliche .social-media img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    object-fit: contain;
    animation: socialPulse 5s ease-in-out infinite;
}

@keyframes socialPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

body.jugendliche .social-media .handle {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    padding-bottom: 3px;
    text-align: center;
}

body.jugendliche .social-media .handle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a50775, transparent);
}

body.jugendliche .app-store-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(165, 7, 117, 0.3);
    border-radius: 4px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px rgba(165, 7, 117, 0.1);
    width: 90%;
}

body.jugendliche .app-store-badges h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    text-align: center;
    font-weight: 500;
    position: relative;
    padding-bottom: 8px;
}

body.jugendliche .app-store-badges h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a50775, transparent);
}

body.jugendliche .app-store-badges img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

body.jugendliche .app-store-badges a {
    display: block;
    text-decoration: none;
    position: relative;
}

/* Trennlinie */
body.jugendliche .additional-content {
    flex: 2;
    position: relative;
}

body.jugendliche .additional-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent,
        rgba(165, 7, 117, 0.8),
        rgba(165, 7, 117, 0.8),
        rgba(165, 7, 117, 0.8),
        transparent
    );
    box-shadow: 0 0 15px rgba(165, 7, 117, 0.5);
}

body.jugendliche .drink-ad {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

body.jugendliche .drink-ad img {
    height: 90%;
    width: auto;
    margin: 0 2rem;
}

body.jugendliche .drink-ad .drink-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body.jugendliche .drink-ad .drink-name {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

body.jugendliche .drink-ad .drink-price {
    font-size: 2rem;
}

body.jugendliche .card {
    transition: all 0.3s ease;
    margin-bottom: 0.15rem;
    background-color: #000;
    border: none;
    border-left: 1px solid #a50775;
    /* border-radius: 0; */
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

body.jugendliche .additives-info {
    font-size: 0.75rem;
}

/* Events Styles */
.events-section {
    margin-top: 2rem;
}

#events-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
}

.event-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(165, 7, 117, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    position: relative;
    width: 100%;
    padding-top: 40%; /* Reduziert von 56.25% für kleinere Bilder */
    overflow: hidden;
}

.event-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.event-info h3 {
    color: var(--text-light);
    font-size: 2.2rem; /* Vergrößert von 1.8rem */
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.event-date, .event-time {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0.5rem 0;
    font-size: 1.5rem; /* Vergrößert von 1.2rem */
    line-height: 1.3;
}

.event-description {
    color: var(--text-light);
    opacity: 0.8;
    margin: 1rem 0;
    line-height: 1.5;
}

.event-price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem 0 0 0;
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-youth {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.badge-all {
    background-color: #2a2a2a;
    color: var(--text-light);
    border: 1px solid var(--primary-color);
}

.no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.no-events h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Responsive Events */
@media (max-width: 1200px) {
    #events-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #events-container {
        grid-template-columns: 1fr;
    }
}

/* Jugendkarten-spezifische Event Styles */
body.jugendliche #events-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
    overflow-y: auto;
    height: 100%;
}

body.jugendliche .event-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(165, 7, 117, 0.3);
    margin-bottom: 0;
    height: auto;
}

body.jugendliche .event-image {
    padding-top: 30%;
}

body.jugendliche .event-info {
    min-height: auto;
    padding: 1rem;
}

body.jugendliche .event-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

body.jugendliche .event-date,
body.jugendliche .event-time {
    font-size: 1.1rem;
    margin: 0.2rem 0;
}

@media (max-width: 1400px) {
    body.jugendliche #events-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.jugendliche .jugend-ads-container {
        flex-direction: column;
    }
    
    body.jugendliche .social-app-container,
    body.jugendliche .additional-content {
        flex: none;
        width: 100%;
        min-height: auto;
    }
    
    body.jugendliche #events-container {
        max-height: 50vh;
    }
}

/* Jugendkarten-spezifische Schriftgrößen */
body.jugendliche .category-header h2 {
    font-size: 1.8rem;
}

body.jugendliche .card-title {
    font-size: 1.55rem;
}

body.jugendliche .additives-info {
    font-size: 0.8rem;
}

/* Anpassung der Kartenbreite für längere Preistexte */
.card-body {
    padding: 0.35rem 0.5rem;
}

/* Spezifische Schriftgrößen für Haupttheke */
body.haupttheke .drinks-list {
    gap: 0.1rem;  /* Reduziert von 0.15rem */
}

body.haupttheke .category-header h2 {
    font-size: 1.7rem;
}

body.haupttheke .card-title {
    font-size: 1.45rem;
}

/* Modal-Styling */
.modal-content {
    color: #333;
}

.modal-title {
    color: #333;
}

.modal-body label {
    color: #333;
}

.modal-body input, .modal-body select {
    color: #333;
} 