<style>
/* ===== BASE ===== */
.painel-tecnico {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px 60px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
    color: #2d3436;
}

/* ===== HEADER ===== */
.painel-header {
    background: linear-gradient(135deg, #1e3799, #0a3d62);
    color: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tecnico-info .label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.tecnico-info strong {
    font-size: 18px;
    font-weight: 700;
}
.botoes-topo {
    display: flex;
    gap: 10px;
}

.btn-secundario {
    background: #dfe6e9;
    color: #2d3436;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.badge-enviado {
    background: #2ecc71;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 10px;
}

.btn-sair {
    background: #ff4757;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.header-bottom {
    margin-top: 20px;
}

.data-hoje {
    font-size: 14px;
    opacity: 0.9;
}

.titulo-equipe {
    margin: 8px 0 0;
    font-size: 28px;
    font-weight: 800;
}

/* ===== JOGOS ===== */
.lista-jogos h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.jogos {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jogo {
    margin-bottom: 14px;
}

.jogo a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f3f6;
    padding: 16px 18px;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.jogo a:hover {
    background: #e6e9ef;
}

.jogo-info {
    display: flex;
    flex-direction: column;
}

.jogo-info .titulo {
    font-weight: 600;
    font-size: 16px;
}

.jogo-info .data {
    font-size: 13px;
    color: #636e72;
    margin-top: 4px;
}

.jogo-hoje a {
    background: #fff3cd;
    border-left: 6px solid #f39c12;
}

.badge-hoje {
    background: #f39c12;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 20px;
}
.badge-ocorrencias {
    background: #f39c12;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    margin-left: 6px;
}


/* ===== VAZIO ===== */
.vazio {
    font-style: italic;
    color: #636e72;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
    .titulo-equipe {
        font-size: 22px;
    }

    .jogo a {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .badge-hoje {
        align-self: flex-end;
    }
}
</style>