body {
    /* background-color: skyblue; */
}

/* Dark Mode Anpassungen für Formularfelder */
.form-control,
.form-select,
.card-body[contenteditable="true"] { /* Für den Minimal-Editor */
    background-color: #343a40; /* Dunkles Grau, ähnlich bg-dark von Bootstrap */
    color: #f8f9fa; /* Heller Text, ähnlich text-white */
    border-color: #495057; /* Dunklerer Rand */
}

.form-control::placeholder { /* Für Platzhalter-Text */
    color: #ced4da; /* Etwas hellerer Grau-Ton für Platzhalter */
    opacity: 0.7;
}

/* Editor Toolbar Background (nur für den Editor) */
.card-header {
    background-color: #212529; /* Dunkler Hintergrund für die Toolbar */
    border-color: #495057; /* Dunklerer Rand für die Toolbar */
}

/* Anpassungen für Buttons in der Editor-Toolbar */
.card-header .btn-outline-secondary {
    color: #f8f9fa;
    border-color: #495057;
}

.card-header .btn-outline-secondary:hover {
    background-color: #495057;
    color: #f8f9fa;
}

/* Menu Text Buttons */
.menu-btn {
    position: relative;
    display: block;
    text-decoration: none;
    width: 150px; /* Fixed width for text centering on 150px background image */
}

.menu-btn img {
    border: none;
    display: block; /* Removes bottom space */
}

.menu-btn-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(204, 204, 153);
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 13px;
    white-space: nowrap;
    pointer-events: none; /* Clicks pass through to the link */
    transition: color 0.2s;
}

.menu-btn:hover .menu-btn-text {
    color: rgb(102, 153, 51);
}

/* Active State */
.menu-btn.active .menu-btn-text {
    color: rgb(102, 153, 51);
}

/* Header Text Banner */
.header-text-banner {
    background-image: url("../images/_blank_NBanner-LaZcoFc.png"); /* Assuming images are in a subfolder of public/ */
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 313px;
    height: 33px; /* Image height */
    display: flex;
    align-items: center;
    color: rgb(204, 204, 153);
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 18px; /* Initial size, can be adjusted */
    padding-left: 100px;
    margin-bottom: 25px;
}
