﻿/* display.css - Erweiterte Version mit Wochenansicht */

/* Grundlegende Stile */
.display-screen {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
}

/* Header-Bereich */
.display-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    color: white;
    padding: 12px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo-area {
    font-size: 2.5rem;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #ff5c52;
}

.title-area h1 {
    margin: 0;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.department-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 3px;
}

.clock {
    text-align: right;
    position: relative;
}

.time {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.date {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-top: 5px;
}

/* Hauptinhalt - Zwei-Spalten-Layout */
.display-content {
    flex: 1;
    display: flex;
    padding: 15px;
    gap: 15px;
    overflow: hidden;
}

/* Linke Spalte - Status */
.status-column {
    width: 40%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.status-header {
    padding: 12px 15px;
    background-color: white;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1px;
}

    .status-header h2 {
        margin: 0;
        font-size: 1.3rem;
        font-weight: 600;
        color: #343a40;
        display: flex;
        align-items: center;
    }

        .status-header h2 i {
            margin-right: 10px;
            color: #007bff;
        }

/* Fahrzeugstatuskarten */
.vehicle-status-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    padding: 10px;
    mask-image: linear-gradient(to bottom, transparent, black 10px, black calc(100% - 20px), transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10px, black calc(100% - 20px), transparent);
    padding-top: 10px;
    padding-bottom: 20px;
}

.vehicle-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

    .vehicle-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

.vehicle-header {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #f0f2f5;
    position: relative;
}

.vehicle-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-right: 15px;
    font-size: 1.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vehicle-info {
    flex: 1;
}

.vehicle-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

.vehicle-type {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 2px;
}

.status-indicator {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 30px;
    padding: 5px 10px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.busy-dot {
    background-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
    animation: pulse 1.5s infinite;
}

.available-dot {
    background-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.status-text {
    font-weight: 500;
    font-size: 0.85rem;
}

.vehicle-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Rechte Spalte - Wochenansicht und Zeitlinie */
.right-column {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

/* Panel für die Wochenansicht */
.week-view-panel {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.panel-header {
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .panel-header h2 {
        margin: 0;
        font-size: 1.2rem;
        color: #343a40;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .panel-header h2 i {
            margin-right: 8px;
            color: #007bff;
        }

.week-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.week-indicator {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

/* Wochenraster */
.week-grid {
    display: flex;
    flex-direction: column;
    overflow: auto;
    max-height: 400px;
}

.week-grid-header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 5;
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.week-grid-cell {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 8px 4px;
    border-right: 1px solid #dee2e6;
}

    .week-grid-cell:last-child {
        border-right: none;
    }

.week-header-time {
    min-width: 100px;
    max-width: 120px;
    background-color: #f0f0f0;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
}

.week-header-day {
    padding: 8px 4px;
}

    .week-header-day.today {
        background-color: rgba(0, 123, 255, 0.1);
        border-bottom: 2px solid #007bff;
    }

.week-day-name {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c757d;
}

.week-day-number {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2px 0;
}

.week-day-month {
    font-size: 0.8rem;
    color: #6c757d;
}

.week-grid-body {
    display: flex;
    flex-direction: column;
}

.week-grid-row {
    display: flex;
    border-bottom: 1px solid #dee2e6;
}

    .week-grid-row:last-child {
        border-bottom: none;
    }

.week-vehicle-cell {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    min-width: 100px;
    max-width: 120px;
    padding: 8px;
    position: sticky;
    left: 0;
    z-index: 2;
}

.week-vehicle-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #f0f0f0;
    border-radius: 8px;
    margin-right: 8px;
    font-size: 1rem;
}

.week-vehicle-name {
    font-size: 0.9rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.week-day-cell {
    min-height: 80px;
    background-color: white;
    position: relative;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .week-day-cell.today {
        background-color: rgba(0, 123, 255, 0.05);
    }

/* Buchungsmarker in der Wochenansicht */
.week-booking-marker {
    background-color: rgba(0, 123, 255, 0.8);
    color: white;
    border-radius: 4px;
    padding: 4px 6px;
    font-size: 0.75rem;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s, box-shadow 0.15s;
    display: flex;
    flex-direction: column;
}

    .week-booking-marker:hover {
        transform: scale(1.05);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
        z-index: 10;
    }

.week-booking-time {
    font-size: 0.7rem;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.week-booking-title {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.week-booking-marker.active {
    background-color: rgba(220, 53, 69, 0.9);
    border-left: 3px solid #dc3545;
}

.week-booking-marker.past {
    opacity: 0.6;
}

.week-booking-marker.upcoming {
    background-color: rgba(40, 167, 69, 0.8);
}

/* Fahrzeug-Typen in der Wochenansicht */
.week-booking-marker.vehicle-type-mtw {
    background-color: rgba(40, 167, 69, 0.8);
}

.week-booking-marker.vehicle-type-elw {
    background-color: rgba(0, 123, 255, 0.8);
}

.week-booking-marker.vehicle-type-tlf {
    background-color: rgba(253, 126, 20, 0.8);
}

.week-booking-marker.vehicle-type-hlf {
    background-color: rgba(220, 53, 69, 0.8);
}

.week-booking-marker.vehicle-type-lf20 {
    background-color: rgba(102, 16, 242, 0.8);
}

.week-vehicle-cell.vehicle-type-mtw .week-vehicle-icon {
    color: #28a745;
}

.week-vehicle-cell.vehicle-type-elw .week-vehicle-icon {
    color: #007bff;
}

.week-vehicle-cell.vehicle-type-tlf .week-vehicle-icon {
    color: #fd7e14;
}

.week-vehicle-cell.vehicle-type-hlf .week-vehicle-icon {
    color: #dc3545;
}

.week-vehicle-cell.vehicle-type-lf20 .week-vehicle-icon {
    color: #6610f2;
}

/* Panel für die Tagesansicht */
.todays-bookings {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.last-updated {
    font-size: 0.8rem;
    color: #6c757d;
}

.no-bookings-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #6c757d;
    text-align: center;
    flex: 1;
}

    .no-bookings-message i {
        font-size: 3rem;
        margin-bottom: 15px;
        opacity: 0.5;
    }

.bookings-timeline {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.timeline-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.timeline-now-indicator {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.time-now {
    background-color: #dc3545;
    color: white;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    margin-left: 85px;
    position: relative;
    z-index: 2;
}

.time-line {
    flex: 1;
    height: 2px;
    background-color: #dc3545;
    margin-left: 5px;
}

.timeline {
    padding: 16px;
    overflow-y: auto;
    height: 100%;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    animation: slidein 0.3s ease-out both;
}

    .timeline-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .timeline-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .timeline-item:nth-child(3) {
        animation-delay: 0.3s;
    }

.timeline-time {
    width: 60px;
    text-align: right;
    padding-right: 15px;
    font-size: 0.85rem;
    color: #495057;
}

.time-start {
    font-weight: 600;
}

.time-end {
    color: #6c757d;
}

.timeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
}

.connector-line {
    width: 2px;
    flex-grow: 1;
    background-color: #dee2e6;
}

.connector-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #6c757d;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 12px;
    margin-left: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.timeline-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #212529;
}

.timeline-vehicle {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: white;
    font-weight: 500;
}

.timeline-description {
    margin: 8px 0 12px;
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.4;
}

.timeline-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 0.85rem;
}

.timeline-user {
    color: #6c757d;
    display: flex;
    align-items: center;
}

    .timeline-user i {
        margin-right: 5px;
    }

/* Buchungsstatus */
.booking-active .connector-dot {
    background-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.2);
}

.booking-upcoming .connector-dot {
    background-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
}

.booking-past .timeline-content {
    background-color: #f1f1f1;
    opacity: 0.8;
}

.booking-past .timeline-title,
.booking-past .timeline-user,
.booking-past .timeline-description {
    color: #868e96;
}

.booking-active .timeline-content {
    background-color: rgba(220, 53, 69, 0.05);
    border-left: 3px solid #dc3545;
}

.booking-upcoming .timeline-content {
    background-color: rgba(0, 123, 255, 0.05);
    border-left: 3px solid #007bff;
}

/* Fahrzeugtyp-Farben für Timeline */
.vehicle-type-mtw.connector-dot {
    background-color: #28a745;
}

.vehicle-type-elw.connector-dot {
    background-color: #007bff;
}

.vehicle-type-tlf.connector-dot {
    background-color: #fd7e14;
}

.vehicle-type-hlf.connector-dot {
    background-color: #dc3545;
}

.vehicle-type-lf20.connector-dot {
    background-color: #6610f2;
}

.timeline-vehicle.vehicle-type-mtw {
    background-color: #28a745;
}

.timeline-vehicle.vehicle-type-elw {
    background-color: #007bff;
}

.timeline-vehicle.vehicle-type-tlf {
    background-color: #fd7e14;
}

.timeline-vehicle.vehicle-type-hlf {
    background-color: #dc3545;
}

.timeline-vehicle.vehicle-type-lf20 {
    background-color: #6610f2;
}

/* Modales Fenster für Buchungsdetails */
.booking-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1051;
}

.modal-dialog {
    position: relative;
    z-index: 1052;
    width: 500px;
    max-width: calc(100% - 30px);
}

.modal-content {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    border: none;
}

.modal-header {
    padding: 15px 20px;
    border-bottom: none;
}

    .modal-header.vehicle-type-mtw {
        background-color: #d4edda;
        border-left: 6px solid #28a745;
    }

    .modal-header.vehicle-type-elw {
        background-color: #cce5ff;
        border-left: 6px solid #007bff;
    }

    .modal-header.vehicle-type-tlf {
        background-color: #fff3cd;
        border-left: 6px solid #fd7e14;
    }

    .modal-header.vehicle-type-hlf {
        background-color: #f8d7da;
        border-left: 6px solid #dc3545;
    }

    .modal-header.vehicle-type-lf20 {
        background-color: #e7d6ff;
        border-left: 6px solid #6610f2;
    }

.booking-detail-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .booking-detail-header h3 {
        margin: 0;
        font-weight: 600;
        font-size: 1.4rem;
    }

.vehicle-badge {
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    font-weight: 500;
}

    .vehicle-badge.vehicle-type-mtw {
        background-color: #28a745;
    }

    .vehicle-badge.vehicle-type-elw {
        background-color: #007bff;
    }

    .vehicle-badge.vehicle-type-tlf {
        background-color: #fd7e14;
    }

    .vehicle-badge.vehicle-type-hlf {
        background-color: #dc3545;
    }

    .vehicle-badge.vehicle-type-lf20 {
        background-color: #6610f2;
    }

.booking-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item {
    background-color: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.detail-label {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

    .detail-label i {
        margin-right: 5px;
    }

.detail-value {
    font-weight: 500;
    color: #343a40;
}

.description-box {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
}

    .description-box h6 {
        color: #495057;
        margin-bottom: 10px;
        font-weight: 600;
    }

/* Footer */
.display-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #343a40;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.footer-info i {
    margin-right: 6px;
}

/* Animationen */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slidein {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.vehicle-card {
    animation: fadeIn 0.5s ease-out both;
}

    .vehicle-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .vehicle-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .vehicle-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .vehicle-card:nth-child(4) {
        animation-delay: 0.4s;
    }

/* Fahrzeug-Stile */
.vehicle-type-mtw {
    border-top: 4px solid #28a745;
}

.vehicle-type-elw {
    border-top: 4px solid #007bff;
}

.vehicle-type-tlf {
    border-top: 4px solid #fd7e14;
}

.vehicle-type-hlf {
    border-top: 4px solid #dc3545;
}

.vehicle-type-lf20 {
    border-top: 4px solid #6610f2;
}

.vehicle-type-mtw .vehicle-icon {
    color: #28a745;
}

.vehicle-type-elw .vehicle-icon {
    color: #007bff;
}

.vehicle-type-tlf .vehicle-icon {
    color: #fd7e14;
}

.vehicle-type-hlf .vehicle-icon {
    color: #dc3545;
}

.vehicle-type-lf20 .vehicle-icon {
    color: #6610f2;
}

/* Buchungsdetails */
.active-booking {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    color: black;
}

    .booking-title i {
        margin-right: 8px;
    }

.booking-details {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    flex: 1;
}

.booking-time, .booking-user, .booking-description {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

    .booking-time i, .booking-user i, .booking-description i {
        margin-right: 10px;
        margin-top: 3px;
        color: #6c757d;
    }

.time-period {
    font-weight: 500;
}

.time-remaining, .time-until {
    margin-left: 8px;
    color: #6c757d;
    font-size: 0.9rem;
}

.next-booking {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.next-info {
    color: #007bff;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

    .next-info i {
        margin-right: 8px;
    }

.vehicle-available {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-bookings {
    color: #28a745;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .no-bookings i {
        font-size: 2.5rem;
        margin-bottom: 15px;
        opacity: 0.8;
    }

/* Status-Farben */
.status-busy {
    background-color: rgba(220, 53, 69, 0.03);
}

.status-available {
    background-color: rgba(40, 167, 69, 0.03);
}

/* Responsive Anpassungen */
@media (max-width: 1400px) {
    .display-content {
        flex-direction: column;
    }

    .status-column, .right-column {
        width: 100%;
    }

    .vehicle-status-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        min-height: 200px;
        max-height: 300px;
    }

    .week-grid {
        max-height: 300px;
    }
}

@media (max-width: 992px) {
    .week-grid-cell {
        min-width: 100px;
    }

    .time {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .display-header {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
    }

    .header-left {
        margin-bottom: 10px;
        flex-direction: column;
    }

    .logo-area {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .title-area {
        text-align: center;
    }

    .header-right {
        margin-top: 10px;
    }

    .time {
        font-size: 2rem;
    }

    .date {
        font-size: 1rem;
    }

    .vehicle-status-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-header {
        flex-wrap: wrap;
    }

    .status-indicator {
        margin-top: 10px;
    }

    .display-footer {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 15px;
    }

    .booking-time, .booking-user, .booking-description {
        flex-direction: column;
    }

        .booking-time i, .booking-user i, .booking-description i {
            margin-bottom: 5px;
        }
}

/* Scrollbar-Stile */
.timeline::-webkit-scrollbar,
.week-grid::-webkit-scrollbar,
.vehicle-status-grid::-webkit-scrollbar {
    width: 8px;
}

.timeline::-webkit-scrollbar-track,
.week-grid::-webkit-scrollbar-track,
.vehicle-status-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.timeline::-webkit-scrollbar-thumb,
.week-grid::-webkit-scrollbar-thumb,
.vehicle-status-grid::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

    .timeline::-webkit-scrollbar-thumb:hover,
    .week-grid::-webkit-scrollbar-thumb:hover,
    .vehicle-status-grid::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

.timeline,
.week-grid,
.vehicle-status-grid {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

/* Ergänzungen für die display.css - spezifisch für die Drag-Auswahl Funktionalität */

/* Markierung für Auswahl während des Ziehens */
.time-selection-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.2);
    border: 2px dashed rgba(0, 123, 255, 0.5);
    pointer-events: none;
    z-index: 5;
}

/* Anpassungen für die auswählbaren Zellen */
.week-day-cell {
    cursor: pointer;
    transition: background-color 0.15s;
    position: relative;
}

    .week-day-cell:hover {
        background-color: rgba(0, 123, 255, 0.08);
    }

    .week-day-cell:active {
        background-color: rgba(0, 123, 255, 0.15);
    }

/* Hinweis zur Drag-Auswahl */
.selection-hint {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 0 0 8px 8px;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: #0056b3;
    animation: fadeInUp 0.5s ease-out forwards;
}

.hint-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hint-content i {
        margin-right: 8px;
        font-size: 1.1rem;
    }

/* Stil für die Bestätigungsmeldung */
.selection-message {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #0056b3;
}

    .selection-message i {
        margin-right: 10px;
        font-size: 1.2rem;
    }

/* Animation für das Einblenden des Hinweises */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Zusätzliche Hervorhebung beim Drag-Vorgang */
.week-grid-row.dragging {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Stil für den "Neuen Einsatz planen"-Button */
.modal-footer .btn-primary {
    background-color: #28a745;
    border-color: #28a745;
}

    .modal-footer .btn-primary:hover {
        background-color: #218838;
        border-color: #1e7e34;
    }

/* Zusätzliche Stile für das Buchungsformular */
.booking-form-prefilled {
    background-color: #e8f4fe;
    border-left: 4px solid #007bff;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.prefilled-notice {
    display: flex;
    align-items: center;
    color: #0056b3;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

    .prefilled-notice i {
        margin-right: 8px;
    }

/* Anpassung für Touch-Geräte */
@media (max-width: 992px) {
    .selection-hint {
        font-size: 0.8rem;
        padding: 8px;
    }

    .week-day-cell {
        min-height: 60px;
    }
}


/* Ergänzungen für display.css - Vollbildmodus */

.display-setup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 20px;
}

    .display-setup-container .card {
        max-width: 800px;
        width: 100%;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

    .display-setup-container .card-header {
        padding: 1.5rem;
    }

        .display-setup-container .card-header h1 {
            font-size: 1.8rem;
            font-weight: 600;
        }

    .display-setup-container .card-body {
        padding: 2rem;
    }

    .display-setup-container .lead {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .display-setup-container ul {
        margin-bottom: 1.5rem;
    }

    .display-setup-container kbd {
        background-color: #212529;
        padding: 0.2rem 0.4rem;
        border-radius: 0.2rem;
    }

/* Vollbildmodus Anpassungen */
.fullscreen-mode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #f0f2f5;
    overflow: hidden;
}

    .fullscreen-mode .display-header {
        padding: 10px 20px;
    }

    .fullscreen-mode .title-area h1 {
        font-size: 1.6rem;
    }

    .fullscreen-mode .department-label {
        font-size: 0.9rem;
    }

    .fullscreen-mode .time {
        font-size: 2.4rem;
    }

    .fullscreen-mode .date {
        font-size: 1rem;
    }

    .fullscreen-mode .display-content {
        height: calc(100vh - 84px - 46px); /* viewport - header - footer */
        overflow: hidden;
    }

    .fullscreen-mode .status-column {
        overflow-y: auto;
    }

    .fullscreen-mode .vehicle-status-grid {
        height: calc(100vh - 140px);
        mask-image: none;
        -webkit-mask-image: none;
    }

    .fullscreen-mode .timeline {
        height: calc(100vh - 180px);
    }

    .fullscreen-mode .display-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: #343a40;
        color: rgba(255, 255, 255, 0.6);
    }

/* Buchungsstatusanzeige */
.status-pending {
    border-left-color: #ffc107 !important;
    opacity: 0.9;
}

.booking-title .badge {
    font-size: 0.7rem;
    font-weight: normal;
    vertical-align: middle;
}

/* Erweiterungen für den Gantt-Chart im Anzeigemodus */

/* Gantt-Chart Container */
.vehicle-gantt-chart {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    flex: 2; /* Mehr Platz für den Gantt-Chart */
}

.gantt-header {
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .gantt-header h2 {
        margin: 0;
        font-size: 1.2rem;
        color: #343a40;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .gantt-header h2 i {
            margin-right: 8px;
        }

.gantt-legend {
    display: flex;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.legend-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    margin-right: 6px;
}

    .legend-color.approved {
        background-color: #28a745;
    }

    .legend-color.pending {
        background-color: #ffc107;
    }

/* Gantt-Chart Hauptbereich */
.gantt-chart {
    flex: 1;
    overflow: auto;
    position: relative;
}

.gantt-hours-header {
    display: flex;
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    z-index: 5;
}

.gantt-vehicle-column {
    min-width: 180px;
    padding: 10px;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid #dee2e6;
}

.gantt-hour-column {
    width: 60px;
    min-width: 60px;
    padding: 10px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
}

.gantt-body {
    position: relative;
}

.gantt-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    height: 60px;
}

.gantt-vehicle-label {
    min-width: 180px;
    padding: 10px;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    position: sticky;
    left: 0;
    z-index: 2;
}

    .gantt-vehicle-label i {
        margin-right: 8px;
        font-size: 1.1rem;
    }

    .gantt-vehicle-label.vehicle-type-mtw i {
        color: #28a745;
    }

    .gantt-vehicle-label.vehicle-type-elw i {
        color: #007bff;
    }

    .gantt-vehicle-label.vehicle-type-tlf i {
        color: #fd7e14;
    }

    .gantt-vehicle-label.vehicle-type-hlf i {
        color: #dc3545;
    }

    .gantt-vehicle-label.vehicle-type-lf20 i {
        color: #6610f2;
    }

.gantt-timeline {
    position: relative;
    flex: 1;
    min-width: 1000px; /* Sicherstellen, dass genug Platz für alle Stunden ist */
}

/* Stunden-Markierungen */
.gantt-hour-marker {
    position: absolute;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #dee2e6;
}

/* Aktuelle Zeit Markierung */
.gantt-now-marker {
    position: absolute;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #dc3545;
    z-index: 3;
}

.gantt-now-time {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Buchungen im Gantt-Chart */
.gantt-booking {
    position: absolute;
    top: 5px;
    height: calc(100% - 10px);
    border-radius: 4px;
    padding: 5px 8px;
    font-size: 0.85rem;
    color: white;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: transform 0.15s, box-shadow 0.15s;
}

    .gantt-booking:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
        z-index: 4;
    }

.gantt-booking-title {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gantt-booking-time {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Status-Stile für Buchungen */
.gantt-booking.booking-approved {
    background-color: #28a745;
    border: 1px solid rgba(255,255,255,0.2);
}

.gantt-booking.booking-pending {
    background-color: #ffc107;
    color: #212529;
    border: 1px dashed rgba(0,0,0,0.2);
}

/* Fahrzeugtyp-spezifische Stile */
.gantt-booking.vehicle-type-mtw {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
}

.gantt-booking.vehicle-type-elw {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
}

.gantt-booking.vehicle-type-tlf {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
}

.gantt-booking.vehicle-type-hlf {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
}

.gantt-booking.vehicle-type-lf20 {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
}

/* Tagesplan-Bereich */
.todays-schedule {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.schedule-header {
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .schedule-header h2 {
        margin: 0;
        font-size: 1.2rem;
        color: #343a40;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .schedule-header h2 i {
            margin-right: 8px;
            color: #007bff;
        }

.last-updated {
    font-size: 0.8rem;
    color: #6c757d;
}

.schedule-timeline {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

/* Zeitplan-Elemente */
.schedule-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s;
    border-left: 4px solid #dee2e6;
}

    .schedule-item:hover {
        transform: translateX(5px);
    }

.schedule-time {
    min-width: 80px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    padding-right: 10px;
}

.schedule-vehicle {
    min-width: 160px;
    padding: 6px 12px;
    background-color: rgba(0,0,0,0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

    .schedule-vehicle i {
        margin-right: 8px;
        font-size: 1.1rem;
    }

.schedule-details {
    flex: 1;
}

.schedule-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.schedule-user {
    font-size: 0.85rem;
    color: #6c757d;
}

.schedule-status {
    min-width: 80px;
    text-align: center;
}

/* Status-spezifische Stile */
.schedule-active {
    border-left-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.schedule-upcoming {
    border-left-color: #007bff;
    background-color: rgba(0, 123, 255, 0.05);
}

.schedule-past {
    border-left-color: #6c757d;
    opacity: 0.8;
}

.schedule-pending {
    border-style: dashed;
}

/* Fahrzeugtyp-spezifische Stile */
.schedule-vehicle.vehicle-type-mtw {
    color: #28a745;
}

    .schedule-vehicle.vehicle-type-mtw i {
        color: #28a745;
    }

.schedule-vehicle.vehicle-type-elw {
    color: #007bff;
}

    .schedule-vehicle.vehicle-type-elw i {
        color: #007bff;
    }

.schedule-vehicle.vehicle-type-tlf {
    color: #fd7e14;
}

    .schedule-vehicle.vehicle-type-tlf i {
        color: #fd7e14;
    }

.schedule-vehicle.vehicle-type-hlf {
    color: #dc3545;
}

    .schedule-vehicle.vehicle-type-hlf i {
        color: #dc3545;
    }

.schedule-vehicle.vehicle-type-lf20 {
    color: #6610f2;
}

    .schedule-vehicle.vehicle-type-lf20 i {
        color: #6610f2;
    }

/* Keine Buchungen Nachricht */
.no-bookings-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #6c757d;
    text-align: center;
    flex: 1;
}

    .no-bookings-message i {
        font-size: 3rem;
        margin-bottom: 15px;
        opacity: 0.5;
    }

/* Anpassungen für den Header mit Datum-Navigation */
.display-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    color: white;
    padding: 10px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.display-date-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .display-date-nav h2 {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 600;
    }

    .display-date-nav .btn {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        padding: 0;
    }

/* Vollbildmodus Anpassungen */
.fullscreen-mode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #f0f2f5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .fullscreen-mode .display-header {
        padding: 10px 20px;
    }

    .fullscreen-mode .title-area h1 {
        font-size: 1.6rem;
    }

    .fullscreen-mode .department-label {
        font-size: 0.9rem;
    }

    .fullscreen-mode .time {
        font-size: 2.4rem;
    }

    .fullscreen-mode .date {
        font-size: 1rem;
    }

    .fullscreen-mode .display-content {
        display: flex;
        padding: 15px;
        gap: 15px;
        overflow: hidden;
        flex: 1;
    }

    .fullscreen-mode .status-column {
        width: 30%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .fullscreen-mode .right-column {
        width: 70%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        overflow: hidden;
    }

    .fullscreen-mode .display-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: #343a40;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

/* Buchungsstatusanzeige */
.status-pending {
    border-left-color: #ffc107 !important;
    opacity: 0.9;
}

.booking-title .badge {
    font-size: 0.7rem;
    font-weight: normal;
    vertical-align: middle;
}

/* Startseiten-Layout */
.display-setup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 20px;
}

    .display-setup-container .card {
        max-width: 800px;
        width: 100%;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

    .display-setup-container .card-header {
        padding: 1.5rem;
    }

        .display-setup-container .card-header h1 {
            font-size: 1.8rem;
            font-weight: 600;
        }

    .display-setup-container .card-body {
        padding: 2rem;
    }

    .display-setup-container .lead {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .display-setup-container ul {
        margin-bottom: 1.5rem;
    }

    .display-setup-container kbd {
        background-color: #212529;
        padding: 0.2rem 0.4rem;
        border-radius: 0.2rem;
    }

/* Responsive Anpassungen */
@media (max-width: 1400px) {
    .fullscreen-mode .display-content {
        flex-direction: column;
    }

    .fullscreen-mode .status-column,
    .fullscreen-mode .right-column {
        width: 100%;
    }

    .gantt-vehicle-label,
    .gantt-vehicle-column {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .display-date-nav h2 {
        font-size: 1.1rem;
    }

    .gantt-vehicle-label,
    .gantt-vehicle-column {
        min-width: 120px;
    }

    .gantt-hour-column {
        width: 50px;
        min-width: 50px;
    }

    .schedule-vehicle {
        min-width: 130px;
    }
}

/* Styles für den wöchentlichen Gantt-Chart */
.weekly-gantt-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    flex: 3; /* Mehr Platz für den Gantt-Chart */
}

.weekly-gantt-header {
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .weekly-gantt-header h2 {
        margin: 0;
        font-size: 1.2rem;
        color: #343a40;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .weekly-gantt-header h2 i {
            margin-right: 8px;
        }

.gantt-legend {
    display: flex;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.legend-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    margin-right: 6px;
}

    .legend-color.approved {
        background-color: #28a745;
    }

    .legend-color.pending {
        background-color: #ffc107;
    }

/* Wöchentlicher Gantt-Chart Hauptbereich */
.weekly-gantt-chart {
    flex: 1;
    overflow: auto;
    position: relative;
}

.weekly-gantt-days {
    display: flex;
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    z-index: 5;
}

.gantt-vehicle-column {
    min-width: 180px;
    padding: 10px;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid #dee2e6;
}

.gantt-day-column {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #495057;
    border-right: 1px solid #f0f0f0;
}

    .gantt-day-column.day-today {
        background-color: #e3f2fd;
        color: #0d6efd;
    }

.day-name {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.day-number {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.day-month {
    font-size: 0.8rem;
    color: #6c757d;
}

.weekly-gantt-body {
    position: relative;
}

.weekly-gantt-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    height: auto;
    min-height: 100px;
}

.gantt-vehicle-label {
    min-width: 180px;
    padding: 10px;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    position: sticky;
    left: 0;
    z-index: 2;
}

    .gantt-vehicle-label i {
        margin-right: 8px;
        font-size: 1.1rem;
    }

    .gantt-vehicle-label.vehicle-type-mtw i {
        color: #28a745;
    }

    .gantt-vehicle-label.vehicle-type-elw i {
        color: #007bff;
    }

    .gantt-vehicle-label.vehicle-type-tlf i {
        color: #fd7e14;
    }

    .gantt-vehicle-label.vehicle-type-hlf i {
        color: #dc3545;
    }

    .gantt-vehicle-label.vehicle-type-lf20 i {
        color: #6610f2;
    }

.weekly-gantt-days-container {
    display: flex;
    flex: 1;
}

.weekly-gantt-day {
    flex: 1;
    border-right: 1px solid #f0f0f0;
    min-height: 100px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .weekly-gantt-day.day-today {
        background-color: rgba(227, 242, 253, 0.3);
    }

.day-free {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Buchungen im Wochen-Gantt-Chart */
.weekly-booking {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    background-color: #28a745;
    color: white;
    font-size: 0.85rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.15s, box-shadow 0.15s;
}

    .weekly-booking:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
        z-index: 10;
    }

    .weekly-booking .booking-time {
        font-size: 0.75rem;
        opacity: 0.9;
        margin-bottom: 2px;
    }

    .weekly-booking .booking-title {
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Status-Stile für Buchungen */
    .weekly-booking.booking-approved {
        background-color: #28a745;
        border: 1px solid rgba(255,255,255,0.2);
    }

    .weekly-booking.booking-pending {
        background-color: #ffc107;
        color: #212529;
        border: 1px dashed rgba(0,0,0,0.2);
    }

    .weekly-booking.booking-active {
        border: 2px solid #dc3545;
        position: relative;
    }

        .weekly-booking.booking-active::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(220, 53, 69, 0.3);
            animation: pulse 2s infinite;
        }

    .weekly-booking.booking-past {
        opacity: 0.7;
    }

@keyframes pulse {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0.2;
    }
}

/* Fahrzeugtyp-spezifische Stile */
.weekly-booking.vehicle-type-mtw {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
}

.weekly-booking.vehicle-type-elw {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
}

.weekly-booking.vehicle-type-tlf {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
}

.weekly-booking.vehicle-type-hlf {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
}

.weekly-booking.vehicle-type-lf20 {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
}

/* Aktueller Status Container */
.current-status-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 2;
}

.current-status-header {
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

    .current-status-header h2 {
        margin: 0;
        font-size: 1.2rem;
        color: #343a40;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

        .current-status-header h2 i {
            margin-right: 8px;
        }

.current-status-grid {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-section {
    margin-bottom: 15px;
}

    .status-section h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #495057;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }

        .status-section h3 i {
            margin-right: 8px;
            color: #6c757d;
        }

.status-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Aktives Fahrzeugitem */
.active-status-item {
    display: flex;
    background-color: rgba(220, 53, 69, 0.05);
    border-radius: 8px;
    padding: 12px;
    border-left: 4px solid #dc3545;
}

.status-vehicle {
    min-width: 150px;
    display: flex;
    align-items: center;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #dee2e6;
}

    .status-vehicle i {
        margin-right: 8px;
        font-size: 1.2rem;
    }

.status-info {
    flex: 1;
}

.status-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/*.status-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
    color: #6c757d;
}

    .status-details span {
        display: flex;
        align-items: center;
    }

        .status-details span i {
            margin-right: 5px;
        }*/

/* Upcoming Fahrzeugitem */
.upcoming-status-item {
    display: flex;
    background-color: rgba(0, 123, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    border-left: 4px solid #007bff;
}

/* Verfügbare Fahrzeuge */
.available-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.available-vehicle {
    display: flex;
    align-items: center;
    background-color: rgba(40, 167, 69, 0.05);
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

    .available-vehicle i {
        margin-right: 8px;
        font-size: 1.2rem;
    }

.available-indicator {
    margin-left: auto;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
}

/* Fahrzeugtyp-spezifische Stile für Status */
.active-status-item.vehicle-type-mtw .status-vehicle i,
.upcoming-status-item.vehicle-type-mtw .status-vehicle i,
.available-vehicle.vehicle-type-mtw i {
    color: #28a745;
}

.active-status-item.vehicle-type-elw .status-vehicle i,
.upcoming-status-item.vehicle-type-elw .status-vehicle i,
.available-vehicle.vehicle-type-elw i {
    color: #007bff;
}

.active-status-item.vehicle-type-tlf .status-vehicle i,
.upcoming-status-item.vehicle-type-tlf .status-vehicle i,
.available-vehicle.vehicle-type-tlf i {
    color: #fd7e14;
}

.active-status-item.vehicle-type-hlf .status-vehicle i,
.upcoming-status-item.vehicle-type-hlf .status-vehicle i,
.available-vehicle.vehicle-type-hlf i {
    color: #dc3545;
}

.active-status-item.vehicle-type-lf20 .status-vehicle i,
.upcoming-status-item.vehicle-type-lf20 .status-vehicle i,
.available-vehicle.vehicle-type-lf20 i {
    color: #6610f2;
}

/* Vollbildmodus und Layout-Anpassungen */
.fullscreen-mode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #f0f2f5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .fullscreen-mode .display-header {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 10px 20px;
        background: linear-gradient(135deg, #343a40 0%, #495057 100%);
        color: white;
    }

    .fullscreen-mode .display-content {
        display: flex;
        padding: 15px;
        gap: 15px;
        overflow: hidden;
        flex: 1;
    }

    .fullscreen-mode .display-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: #343a40;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

.display-date-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .display-date-nav h2 {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 600;
        text-align: center;
    }

/* Responsive Anpassungen */
@media (max-width: 1400px) {
    .fullscreen-mode .display-content {
        flex-direction: column;
    }

    .weekly-gantt-day {
        min-height: 80px;
    }

    .weekly-gantt-row {
        min-height: 80px;
    }
}

@media (max-width: 992px) {
    .display-date-nav h2 {
        font-size: 1.2rem;
    }

    .gantt-vehicle-label,
    .gantt-vehicle-column {
        min-width: 150px;
    }

    .available-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .weekly-booking .booking-time,
    .weekly-booking .booking-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Startseiten-Layout */
.display-setup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 20px;
}

    .display-setup-container .card {
        max-width: 800px;
        width: 100%;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

    .display-setup-container .card-header {
        padding: 1.5rem;
    }

        .display-setup-container .card-header h1 {
            font-size: 1.8rem;
            font-weight: 600;
        }

    .display-setup-container .card-body {
        padding: 2rem;
    }

    .display-setup-container .lead {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .display-setup-container ul {
        margin-bottom: 1.5rem;
    }

    .display-setup-container kbd {
        background-color: #212529;
        padding: 0.2rem 0.4rem;
        border-radius: 0.2rem;
    }

/* Base booking styles */
.weekly-booking {
    /* Common styles for all bookings */
    padding: 4px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-size: 0.8rem;
    overflow: hidden;
}

/* Status-specific styles */
.booking-pending {
    opacity: 0.7; /* Make pending bookings more transparent */
    border: 1px dashed rgba(0,0,0,0.2);
    background-color: rgba(255, 193, 7, 0.2) !important; /* Light yellow background */
    color: #664d03 !important; /* Darker text for readability */
}

/* Vehicle color for approved bookings */
.booking-approved.vehicle-type-mtw {
    background-color: rgba(40, 167, 69, 0.9); /* MTW green */
    color: white;
}

.booking-approved.vehicle-type-elw {
    background-color: rgba(0, 123, 255, 0.9); /* ELW blue */
    color: white;
}

.booking-approved.vehicle-type-tlf {
    background-color: rgba(253, 126, 20, 0.9); /* TLF orange */
    color: white;
}

.booking-approved.vehicle-type-hlf {
    background-color: rgba(220, 53, 69, 0.9); /* HLF red */
    color: white;
}

.booking-approved.vehicle-type-lf20 {
    background-color: rgba(102, 16, 242, 0.9); /* LF20 purple */
    color: white;
}

/* Active and past booking styles */
.booking-active {
    border: 2px solid white;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.2);
}

.booking-past {
    opacity: 0.5;
}

/* Make the current status container larger */
.current-status-container {
    flex: 1; /* Take up more space */
    padding: 15px;
}

/* Increase header size */
.current-status-header h2 {
    font-size: 2rem; /* Larger header */
    margin-bottom: 1.5rem;
}

/* Make section headers larger */
.status-section h3 {
    font-size: 1.6rem; /* Larger section headers */
    margin-bottom: 1.2rem;
    padding: 10px 0;
}

/* Increase size of status items */
.status-items {
    gap: 20px; /* More space between items */
}

.active-status-item, .upcoming-status-item {
    padding: 16px; /* More padding */
    border-radius: 12px;
    margin-bottom: 16px;
}

/* Make vehicle name larger */
.status-vehicle {
    font-size: 1.4rem; /* Larger vehicle name */
}

    .status-vehicle i {
        font-size: 1.6rem; /* Larger icon */
        margin-right: 12px;
    }

/* Make status title larger */
.status-title {
    font-size: 1.5rem; /* Larger title */
    margin-bottom: 12px;
}

/* Make status details larger */
.status-details {
    font-size: 1.2rem; /* Larger details */
    line-height: 1.5;
}

    .status-details i {
        margin-right: 8px;
    }

/* Increase badge size */
.badge {
    font-size: 0.9rem;
    padding: 6px 10px;
}

/* Make available vehicles larger */
.available-grid {
    gap: 18px;
}

.available-vehicle {
    font-size: 1.3rem;
    padding: 15px;
    border-radius: 12px;
}

    .available-vehicle i {
        font-size: 1.5rem;
        margin-right: 10px;
    }

.available-indicator {
    font-size: 1.3rem;
}

/* Make the current status container larger overall */
.current-status-container {
    flex: 1;
    padding: 20px;
    min-height: 600px; /* Set minimum height to make it taller */
}

/* Increase header size */
.current-status-header h2 {
    font-size: 2.4rem; /* Larger header */
    margin-bottom: 2rem;
    line-height: 1.3;
}

/* Make section headers larger */
.status-section {
    margin-bottom: 30px; /* More space between sections */
}

    .status-section h3 {
        font-size: 2rem; /* Much larger section headers */
        margin-bottom: 1.5rem;
        padding: 12px 0;
        line-height: 1.3;
    }

/* Increase size of status items */
.status-items {
    gap: 25px; /* More space between items */
}

.active-status-item, .upcoming-status-item {
    padding: 20px; /* More padding */
    border-radius: 12px;
    margin-bottom: 20px;
    min-height: 120px; /* Make items taller */
}

/* Make vehicle name larger */
.status-vehicle {
    font-size: 1.8rem; /* Much larger vehicle name */
    margin-bottom: 10px;
    min-height: 40px; /* Make the vehicle name section taller */
}

    .status-vehicle i {
        font-size: 2rem; /* Larger icon */
        margin-right: 15px;
    }

/* Make status title larger */
.status-title {
    font-size: 2rem; /* Much larger title */
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 45px; /* Make the title section taller */
}

/* Make status details larger */
.status-details {
    font-size: 1.6rem; /* Much larger details */
    line-height: 1.6;
}

    .status-details span {
        display: block; /* Stack details vertically */
        margin-bottom: 12px; /* Space between details */
        min-height: 30px; /* Minimum height for each detail */
    }

    .status-details i {
        margin-right: 12px;
        font-size: 1.4rem; /* Larger icons in details */
    }

/* Increase badge size */
.badge {
    font-size: 1.2rem;
    padding: 8px 12px;
    border-radius: 8px;
}

/* Make available vehicles larger */
.available-grid {
    gap: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.available-vehicle {
    font-size: 1.8rem;
    padding: 20px;
    border-radius: 12px;
    min-height: 100px; /* Make available vehicle items taller */
    display: flex;
    align-items: center;
}

    .available-vehicle i {
        font-size: 2rem;
        margin-right: 15px;
    }

.available-indicator {
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add more vertical spacing to the entire display */
.display-content {
    gap: 30px; /* More space between main content sections */
}

/* Make sure the display takes full height */
.display-screen.fullscreen-mode {
    min-height: 100vh;
}

/* Adjust the weekly gantt chart to balance with the status section */
.weekly-gantt-container {
    min-height: 500px;
}

/* Add these styles to your existing display.css file */

/* Fix for weekly view column alignment */
.weekly-gantt-days {
    display: flex;
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    z-index: 5;
    height: auto;
}

.gantt-vehicle-column {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    padding: 10px;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid #dee2e6;
}

.gantt-day-column {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #495057;
    border-right: 1px solid #f0f0f0;
}

.gantt-vehicle-label {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    padding: 10px;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    position: sticky;
    left: 0;
    z-index: 2;
}

.weekly-gantt-days-container {
    display: flex;
    flex: 1;
    width: calc(100% - 180px);
}

/* Increase font size for weekly bookings */
.weekly-booking {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    font-size: 1.1rem;
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
}

    .weekly-booking .booking-time {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 4px;
        font-weight: 600;
    }

    .weekly-booking .booking-title {
        font-weight: 700;
        font-size: 1.2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Increase row height */
.weekly-gantt-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    height: auto;
    min-height: 120px;
}

.weekly-gantt-day {
    flex: 1;
    border-right: 1px solid #f0f0f0;
    min-height: 120px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Make the text in vehicle labels larger */
.gantt-vehicle-label {
    font-size: 1.2rem;
    font-weight: 600;
}

    .gantt-vehicle-label i {
        font-size: 1.4rem;
        margin-right: 10px;
    }

/* Anpassungen für das Gleichgewicht zwischen Wochenansicht und Statusanzeige */

/* Verhältnis der beiden Spalten anpassen */
.fullscreen-mode .display-content {
    display: flex;
    padding: 15px;
    gap: 15px;
    overflow: hidden;
    flex: 1;
}

/* Wochenansicht (linke Seite) mehr Platz geben */
.weekly-gantt-container {
    flex: 3; /* Mehr Platz für die Wochenansicht */
}

/* Statusanzeige (rechte Seite) verkleinern */
.current-status-container {
    flex: 1; /* Weniger Platz für die Statusanzeige */
    padding: 10px;
    min-height: auto; /* Entfernt die feste Mindesthöhe */
}

/* Schriftgrößen und Abstände in der Statusanzeige reduzieren */
.current-status-header h2 {
    font-size: 1.4rem; /* Kleinere Überschrift */
    margin-bottom: 1rem;
}

.status-section h3 {
    font-size: 1.2rem; /* Kleinere Abschnittsüberschriften */
    margin-bottom: 0.8rem;
    padding: 6px 0;
}

.status-items {
    gap: 10px; /* Weniger Abstand zwischen Einträgen */
}

.active-status-item, .upcoming-status-item {
    padding: 10px; /* Weniger Padding */
    border-radius: 8px;
    margin-bottom: 8px;
    min-height: auto; /* Keine feste Mindesthöhe */
}

/* Fahrzeugnamen verkleinern */
.status-vehicle {
    font-size: 1rem; /* Kleinerer Fahrzeugname */
    margin-bottom: 5px;
    min-height: auto;
    min-width: 120px; /* Schmaler */
}

    .status-vehicle i {
        font-size: 1.2rem; /* Kleineres Icon */
        margin-right: 8px;
    }

/* Titel verkleinern */
.status-title {
    font-size: 1.1rem; /* Kleinerer Titel */
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: auto;
}

/* Details verkleinern */
.status-details {
    font-size: 0.9rem; /* Kleinere Details */
    line-height: 1.4;
}

    .status-details span {
        margin-bottom: 4px;
        min-height: auto;
    }

    .status-details i {
        margin-right: 6px;
        font-size: 0.9rem;
    }

/* Badge verkleinern */
.badge {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Verfügbare Fahrzeuge verkleinern */
.available-grid {
    gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.available-vehicle {
    font-size: 0.9rem;
    padding: 8px;
    border-radius: 6px;
    min-height: auto;
}

    .available-vehicle i {
        font-size: 1.1rem;
        margin-right: 8px;
    }

.available-indicator {
    font-size: 0.9rem;
    width: 20px;
    height: 20px;
}

/* Verbesserte Darstellung für die Weekly-Gantt-Ansicht */
/*.weekly-booking {
    padding: 6px;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

    .weekly-booking .booking-time {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }

    .weekly-booking .booking-title {
        font-size: 0.9rem;
    }*/

/* Zeilenhöhe anpassen */
/*.weekly-gantt-row {
    min-height: 80px;
}

.weekly-gantt-day {
    min-height: 80px;
    padding: 4px;
    gap: 4px;
}*/

/* Schrift in Fahrzeuglabels anpassen */
/*.gantt-vehicle-label {
    font-size: 0.95rem;
}

    .gantt-vehicle-label i {
        font-size: 1.1rem;
        margin-right: 6px;
    }*/

/* Media Queries für responsive Anpassungen */
/*@media (max-width: 1400px) {*/
    /* Bei kleineren Bildschirmen bessere Darstellung ermöglichen */
    /*.fullscreen-mode .display-content {
        flex-direction: column;
    }

    .weekly-gantt-container,
    .current-status-container {
        width: 100%;
        flex: auto;
    }

    .current-status-container {
        max-height: 40vh;*/ /* Begrenzen der Höhe */
        /*overflow-y: auto;
    }
}*/

/* Fix für überlaufende Buchungen in der wöchentlichen Ansicht */

/* Sicherstellen, dass die Wochenansicht-Container korrekt abgeschnitten werden */
.weekly-gantt-day {
    flex: 1;
    border-right: 1px solid #f0f0f0;
    min-height: 100px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: hidden; /* Verhindert Überlauf */
    position: relative; /* Für korrektes z-index-Verhalten */
}

/* Begrenzung der Buchungsbreite auf den Container */
.weekly-booking {
    width: 100%; /* Volle verfügbare Breite nutzen */
    max-width: 100%; /* Aber nicht über den Container hinaus */
    box-sizing: border-box; /* Padding und Border werden in die Gesamtbreite einberechnet */
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 4px;
    overflow: hidden; /* Verhindert Überlauf des Inhalts */
}

    /* Textellipsen für Titel, der nicht passt */
    .weekly-booking .booking-title {
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; /* Zeigt "..." an, wenn der Text zu lang ist */
        width: 100%; /* Volle verfügbare Breite nutzen */
    }

    .weekly-booking .booking-time {
        font-size: 0.75rem;
        opacity: 0.9;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; /* Auch für Zeitangaben Ellipsen nutzen */
        width: 100%;
    }

    /* Sicherstellen, dass beim Hover die Buchung nicht über den Container hinausragt */
    .weekly-booking:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
        z-index: 10;
        max-width: 100%; /* Auch beim Hover auf Container-Größe beschränken */
    }

/* Tooltip-Lösung für lange Titel beim Hover */
.weekly-booking {
    position: relative; /* Für korrekte Positionierung des Tooltips */
}

    .weekly-booking:hover::before {
        content: attr(title); /* Nehmen wir an, dass der Titel als title-Attribut gesetzt ist */
        position: absolute;
        bottom: 100%; /* Über dem Element platzieren */
        left: 0;
        background-color: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 5px 8px;
        border-radius: 4px;
        font-size: 0.85rem;
        white-space: normal; /* Erlaubt Zeilenumbrüche im Tooltip */
        max-width: 300px; /* Maximale Breite für den Tooltip */
        z-index: 100;
        pointer-events: none; /* Damit der Tooltip nicht Mausereignisse blockiert */
        opacity: 0;
        transition: opacity 0.2s;
    }

    .weekly-booking:hover::before {
        opacity: 1;
    }

/* Zusätzliche Styles für die gesamte Tabelle und Spaltenausrichtung */
.weekly-gantt-chart {
    table-layout: fixed; /* Wichtig für gleichmäßige Spaltenbreiten */
    width: 100%;
}

.weekly-gantt-days-container {
    display: flex;
    flex: 1;
    width: calc(100% - 180px);
}

.gantt-day-column {
    flex: 1;
    min-width: 0; /* Erlaubt das Schrumpfen unter die Mindestbreite */
    overflow: hidden;
}

