/* Estilos gerais */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

main {
    flex: 1;
}

/* Estilos para o dashboard */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Estilos para os badges de status */
.badge {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
}

/* Botão de acionamento da sirene */
#acionar-sirene {
    transition: all 0.3s ease;
    font-weight: bold;
    padding: 1rem;
    border-radius: 8px;
}

#acionar-sirene:hover {
    transform: scale(1.05);
    box-shadow: 0 0.5rem 1rem rgba(220, 53, 69, 0.3);
}

/* Estilos para tabela de horários */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.table td, .table th {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

/* Botões de ação na tabela */
.btn-outline-primary, .btn-outline-danger {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.btn-outline-primary {
    color: #2F8C62;
    border-color: #2F8C62;
}

.btn-outline-primary:hover {
    background-color: #2F8C62;
    border-color: #2F8C62;
    color: white;
}

/* Estilos da página de login */
.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    border-bottom: none;
}

.btn-primary {
    background-color: #2F8C62;
    border-color: #2F8C62;
}

.btn-primary:hover {
    background-color: #1a6e45;
    border-color: #1a6e45;
}

/* Animação de fade-in para o card de login */
.card {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Estilos para o dashboard */
.dashboard-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.dashboard-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}