/* ============================================================
   BACKDROP
============================================================ */
.modal-login-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    z-index: 99998;
    opacity: 1;
    transition: opacity .25s ease;
}

.modal-login-backdrop.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ============================================================
   MODAL WRAPPER
============================================================ */
#modal-login {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity .25s ease;
}

#modal-login.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ============================================================
   CONTEÚDO DO MODAL
============================================================ */
.modal-login-content {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(102,204,255,0.45);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 32px;
    width: 100%;
    max-width: 420px;
    color: #e8f8ff;
    box-shadow:
        0 0 26px rgba(102,204,255,0.55),
        inset 0 0 20px rgba(102,204,255,0.28);
    position: relative;
}

/* ============================================================
   TÍTULO
============================================================ */
.modal-login-titulo {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #e8f8ff;
}

/* ============================================================
   INPUTS
============================================================ */
.modal-login-content input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(102,204,255,0.35);
    color: #e8f8ff;
    font-size: 16px;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.modal-login-content input:focus {
    outline: none;
    border-color: var(--gc-blue);
    background: rgba(102,204,255,0.15);
    box-shadow:
        0 0 18px rgba(102,204,255,0.55),
        inset 0 0 12px rgba(102,204,255,0.35);
}

/* ============================================================
   BOTÃO
============================================================ */
.btn-primario {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    background: rgba(102,204,255,0.45);
    border: 1px solid rgba(102,204,255,0.45);
    color: #e8f8ff;
    font-size: 18px;
    cursor: pointer;
    transition: background .3s ease, border-color .3s ease;
}

.btn-primario:hover {
    background: rgba(102,204,255,0.65);
    border-color: var(--gc-blue);
}

/* ============================================================
   BOTÃO FECHAR
============================================================ */
.modal-login-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 26px;
    color: #e8f8ff;
    cursor: pointer;
}

/* Linha dos dias da semana (Dom, Seg, Ter, Qua, ...) */
.fc-col-header-cell {
    background: #f1f3f5 !important; /* cinza suave */
    color: #000 !important;         /* texto preto */
    font-weight: 600;
    padding: 8px 0;
}

/* Texto dentro da célula (Dom, Seg, Ter...) */
.fc-col-header-cell-cushion {
    color: #000 !important;
}
