:root {
    --edeka-blue: #003a70;
    --edeka-yellow: #ffde00;
}

body {
    background-color: #f4f7f6;
    font-family: sans-serif;
}

.edeka-blue {
    background-color: var(--edeka-blue);
    color: white;
}

.edeka-yellow {
    background-color: var(--edeka-yellow);
    color: var(--edeka-blue);
    font-weight: bold;
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.5s;
}

.trailer-spec-box {
    background: #fff;
    border-left: 5px solid var(--edeka-yellow);
    padding: 15px;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fc-day-disabled {
    background-color: #e9ecef !important;
    opacity: 0.5;
    cursor: not-allowed;
}

.fc-nextFreeBtn-button {
    background-color: var(--edeka-yellow) !important;
    color: var(--edeka-blue) !important;
    border: none !important;
    font-weight: bold !important;
    margin-left: 5px !important;
    padding: 5px 15px !important;
    border-radius: 4px !important;
}

.fc-nextFreeBtn-button:hover {
    background-color: #e5c700 !important;
}

.fc-bg-event {
    opacity: 0.6 !important;
    background-color: #ff5757ff !important;
}

td.fc-daygrid-day[style*="background-color: rgb(255, 229, 229)"],
.fc-bg-event {
    cursor: not-allowed !important;
}

.selected-start,
.selected-end {
    background-color: #ffdd009a !important;
    color: #003a709c !important;
    font-weight: bold !important;
    border-radius: 4px; /* NEU */
}

.selected-range {
    background-color: #b1b1b170 !important;
}

#calendar {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.fc .fc-daygrid-day {
    height: 10px !important;
}

.fc-toolbar-title {
    font-size: 1.0rem !important;
}

.fc-button {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.85rem !important;
}

.footer-vertical {
    text-align: center;
}

.footer-vertical ul li a {
    transition: all 0.2s;
    display: inline-block;
    padding: 2px 0;
}

.footer-vertical ul li a:hover {
    color: #0056b3 !important;
    transform: translateY(-5px);
}

.footer-vertical .border-top {
    border-color: #dee2e6 !important;
}

.navbar-brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
}

.header-text {
    line-height: 1.2;
    font-size: 1.1rem;
    font-weight: bold;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.footer-vertical ul li a:hover {
    color: #0056b3 !important;
    padding-left: 5px;
    transition: 0.2s;
}

@media (max-width: 768px) {
    .carousel-item img { height: 250px; }
    .fc-toolbar { flex-direction: column; gap: 10px; }
    .fc-toolbar-title { font-size: 1.2rem !important; }
    .header-text { font-size: 0.9rem; }
    .container { padding-left: 10px; padding-right: 10px; }
}


.fc {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.fc-col-header-cell {
    background: #eeeeee;
    padding: 10px 0 !important;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.fc-daygrid-day-number {
    font-weight: 600;
    padding: 8px !important;
}

@media (max-width: 768px) {
    .fc-daygrid-day-frame {
        min-height: 55px !important;
    }

    .fc-header-toolbar {
        margin-bottom: 1.5rem !important;
    }
}