/**
 * DRV Termin Delete Modal Styles
 * Version: 1.0.0
 */

/* Modal Header Danger */
.drv-modal-header-danger {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    color: white !important;
}

.drv-modal-header-danger h3 {
    color: white !important;
}

.drv-modal-header-danger .drv-modal-close {
    color: white !important;
}

/* Termin Info Box */
.drv-delete-termin-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

/* Warning Box */
.drv-delete-warning {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    color: #92400e;
}

/* Info Box (kein Warning) */
.drv-delete-info {
    background: #dcfce7;
    border: 1px solid #22c55e;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    color: #166534;
}

/* Teilnehmer Actions Container */
.drv-teilnehmer-actions {
    margin-bottom: 20px;
}

/* Bulk Actions */
.drv-bulk-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

/* Teilnehmer Liste */
.drv-teilnehmer-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

/* Teilnehmer Row */
.drv-teilnehmer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
    background: white;
}

.drv-teilnehmer-row:last-child {
    border-bottom: none;
}

.drv-teilnehmer-row:nth-child(even) {
    background: #f8fafc;
}

.drv-teilnehmer-info {
    flex: 1;
}

.drv-teilnehmer-action {
    flex: 0 0 220px;
    margin-left: 15px;
}

.drv-action-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

/* Verschieben Target Container */
#verschieben-target-container {
    background: #eff6ff;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

#verschieben-target-container label {
    display: block;
    margin-bottom: 8px;
}

#verschieben-target-termin {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #3b82f6;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

/* Danger Button */
.drv-btn-danger {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    color: white !important;
    border: none !important;
}

.drv-btn-danger:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%) !important;
}

/* Large Modal */
.drv-modal-large {
    max-width: 700px !important;
    width: 95% !important;
}

/* Text Muted */
.drv-text-muted {
    color: #6b7280;
}

/* Modal Footer Buttons */
.drv-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-radius: 0 0 12px 12px;
}

/* Responsive */
@media (max-width: 600px) {
    .drv-teilnehmer-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .drv-teilnehmer-action {
        flex: none;
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .drv-bulk-actions {
        flex-direction: column;
    }
}
