﻿/* elw-approval.css - Styles für die ELW-Freigabeseite */

.elw-approval-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px;
}

.elw-approval-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

    .elw-approval-header h1 {
        color: #343a40;
        font-weight: 600;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
    }

        .elw-approval-header h1 i {
            color: #007bff;
            margin-right: 12px;
        }

    .elw-approval-header .lead {
        color: #6c757d;
        font-size: 1.1rem;
    }

    .elw-approval-header .alert {
        margin-top: 20px;
    }

/* Tabellenstile */
.table th, .table td {
    vertical-align: middle;
}

.table .vehicle-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    background-color: #f8f9fa;
    font-weight: 500;
}

    .table .vehicle-badge.vehicle-type-elw {
        background-color: rgba(0, 123, 255, 0.1);
        color: #007bff;
        border-left: 3px solid #007bff;
    }

/* Status-Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.5rem;
}

    .badge i {
        margin-right: 4px;
    }

/* Aktion-Buttons */
.btn-group {
    display: flex;
    gap: 5px;
}

/* Modal-Header für ELW */
.modal-header.vehicle-type-elw {
    background-color: rgba(0, 123, 255, 0.1);
    border-left: 6px solid #007bff;
}

/* Status-Styles */
.booking-today {
    background-color: rgba(0, 123, 255, 0.05);
}

.booking-past {
    color: #6c757d;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

    .empty-state i {
        font-size: 3rem;
        color: #dee2e6;
        margin-bottom: 15px;
    }

    .empty-state p {
        font-size: 1.1rem;
        color: #adb5bd;
        margin-bottom: 0;
    }

/* More Bookings Info */
.more-bookings-info {
    margin-top: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    color: #6c757d;
    font-size: 0.9rem;
    text-align: center;
}

    .more-bookings-info i {
        margin-right: 5px;
    }

/* Password Protection */


/* Responsive Anpassungen */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
    }

    .vehicle-badge {
        flex-direction: column;
        text-align: center;
    }

        .vehicle-badge i {
            margin-right: 0;
            margin-bottom: 5px;
        }
}
