/* Reset completo para os horários */
.horarios-container {
    width: 100%;
    box-sizing: border-box;
}

/* Título já está no card */

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

.horario-item {
    background: #222222;
    color: white;
    border-radius: 8px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    border: none;
}

.horario-item:hover {
    background: #333333;
}

.horario-item.selecionado {
    background: #1a73e8;
}
