/* ==========================================================================
   Futuro Acessível — Diálogo "Dados de acesso manual ao TeamTalk"
   Componente independente, sem dependências de index.css
   ========================================================================== */

.teamtalk-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.teamtalk-overlay[hidden] {
    display: none;
}

.teamtalk-dialog {
    width: 100%;
    max-width: 26rem;
    max-height: 90vh;
    overflow-y: auto;
    background-color: #ffffff;
    color: #1a1a1a;
    border-radius: 0.5rem;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.35);
    padding: 1.5rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.5;
}

.teamtalk-dialog:focus {
    outline: 3px solid #1a73e8;
    outline-offset: 2px;
}

.teamtalk-title {
    margin: 0 0 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #191970;
}

.teamtalk-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.teamtalk-list li {
    padding: 0.35rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.teamtalk-list li:last-child {
    border-bottom: none;
}

.teamtalk-close {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background-color: #191970;
    color: #ffffff;
    border: none;
    border-radius: 0.35rem;
    font-size: 1rem;
    cursor: pointer;
}

.teamtalk-close:hover {
    background-color: #14144f;
}

.teamtalk-close:focus {
    outline: 3px solid #1a73e8;
    outline-offset: 2px;
}

@media (max-width: 480px) {

    .teamtalk-dialog {
        padding: 1.1rem;
        border-radius: 0.35rem;
    }

    .teamtalk-title {
        font-size: 1.15rem;
    }

}
