/* styles.css */
body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}


.navbar-custom {
    background-color: #007bff; /* Azul do logo */
}

.navbar-custom .navbar-brand, .navbar-custom .nav-link {
    color: #ffffff !important; /* Texto branco */
}

.btn-custom {
    background-color: #007bff;
    color: #ffffff;
    border: none;
}


.btn-custom:hover {
    background-color: #0056b3;
}

.card-custom {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-custom {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
}

.table-custom th, .table-custom td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table-custom th {
    background-color: #007bff;
    color: #ffffff;
}

.table-custom tr:hover {
    background-color: #f1f1f1;
}