/* BestellungRW3.css */

/* Overlay für den Hintergrund */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Modal-Inhalt */
.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 60%;
    max-width: 800px;
    background-color: #ffffff;
    border-radius: 8px;
    z-index: 1010;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header des Modals */
.modal-content h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #333;
}

/* Tabelle im Modal */
.modal-content .table {
    margin-bottom: 15px;
}

/* Buttons im Modal */
.modal-content button {
    margin-right: 10px;
}

/* Button-Styling */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

/* Hover-Effekte für Buttons */
.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-danger:hover {
    background-color: #c82333;
}
