/* ----------------------------------------------------------
   Conflict dialog overlay for leave approvals
---------------------------------------------------------- */

.eac-conflict-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.eac-conflict-dialog {
    background: #0b1120;
    border-radius: 12px;
    padding: 16px 20px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
    color: #e5e7eb;
}

.eac-wrapper.eac-theme-light .eac-conflict-dialog {
    background: #ffffff;
    color: #111827;
}

.eac-conflict-dialog h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.eac-conflict-dialog p {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.eac-conflict-list {
    margin: 0 0 12px 1em;
    padding: 0;
    font-size: 0.85rem;
}

.eac-conflict-list li {
    margin-bottom: 4px;
}

.eac-conflict-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 8px;
}
