/* =====================================================
   KANBAN EXECUTION MODAL - SISGCOE
===================================================== */

.execucao-overlay.hidden {
    display: none !important;
}

.execucao-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .72);
    backdrop-filter: blur(8px);
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.execucao-modal {
    width: 100%;
    max-width: 560px;
    background: #0f172a;
    border: 1px solid rgba(96, 165, 250, .45);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0,0,0,.55);
    color: #e2e8f0;
    overflow: hidden;
}

.execucao-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(148,163,184,.18);
}

.execucao-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
}

.execucao-header button {
    border: none;
    background: transparent;
    color: #cbd5e1;
    font-size: 24px;
    cursor: pointer;
}

.execucao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 22px;
}

.team-option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px;
    border-radius: 16px;
    background: #111827;
    border: 1px solid rgba(148,163,184,.20);
    cursor: pointer;
    font-weight: 700;
    color: #cbd5e1;
}

.team-option:hover {
    border-color: #60a5fa;
    background: #172554;
}

.team-option input {
    width: 18px;
    height: 18px;
}

.btn-iniciar-execucao {
    width: calc(100% - 44px);
    height: 48px;
    margin: 0 22px 22px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: white;
    font-weight: 900;
    cursor: pointer;
}

@media(max-width: 700px) {
    .execucao-grid {
        grid-template-columns: 1fr;
    }
}
