body {
    background: linear-gradient(to bottom, #e3f2fd, #0d47a1);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.card-bg {
    background: #000080;
}

.content {
    flex: 1;
}

.card-custom {
    transition: 0.3s;
    border: 1px solid #bbdefb;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.card-custom:hover {
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.navbar-brand img {
    max-width: 100px;
    height: auto;
}

.footer {
    background-color: #0d47a1;
    color: white;
    text-align: center;
    padding: 15px 0;
}

.navbar-collapse .btn {
    display: block;
    width: 100%;
    margin-top: 10px;
}

/* Estilos para as tabelas */
.custom-table {
    background-color: #f8f9fa;
    /* Cor de fundo das tabelas */
    margin-bottom: 20px;
    /* Espaçamento entre as tabelas */
    width: 100%;
    /* Largura total */
}

.custom-table thead tr {
    background-color: #000080;
    /* Cor de fundo do cabeçalho */
    color: white;
    /* Cor do texto do cabeçalho */
}

.custom-table th,
.custom-table td {
    padding: 12px;
    /* Espaçamento interno das células */
    text-align: left;
    /* Alinhamento do texto */
}

.custom-table tbody tr:nth-child(odd) {
    background-color: #e9ecef;
    /* Cor de fundo para linhas ímpares */
}

.custom-table tbody tr:nth-child(even) {
    background-color: #ffffff;
    /* Cor de fundo para linhas pares */
}