/* Booking Warning Modal */
.warning-modal-content {
    border: 1px solid var(--danger);
    box-shadow: 0 0 20px rgba(218, 55, 60, 0.2);
}

.warning-header h3 {
    color: var(--danger);
    display: flex;
    align-items: center;
    gap: 8px;
}

.warning-header h3::before {
    content: '!';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--danger);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

.conflict-list-container {
    margin-top: 16px;
    background-color: rgba(218, 55, 60, 0.05);
    border-radius: 6px;
    padding: 12px;
    border: 1px solid rgba(218, 55, 60, 0.2);
}

.conflict-label {
    font-size: 12px;
    font-weight: bold;
    color: var(--danger);
    margin-bottom: 8px;
}

.conflict-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 150px;
    overflow-y: auto;
}

.conflict-list li {
    font-size: 13px;
    color: var(--text-normal);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.conflict-list li:last-child {
    border-bottom: none;
}