body {
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* Branco */
    margin: 0;
    padding: 0;
    color: #333; /* Texto em cinza escuro */
}

.container {
    margin-top: 50px;
}

.jumbotron {
    background-color: #fff3e0; /* Laranja Claro Suave */
    padding: 2rem 1rem;
    border-radius: .3rem;
}

.jumbotron .display-4, .jumbotron .lead {
    color: #ff8f00; /* Laranja Médio */
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

h2, h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #ff6f00; /* Laranja Escuro */
}

.form-group {
    margin-bottom: 15px;
}

.table {
    margin-top: 20px;
}

.table {
    min-width: max-content;
    font-size: 14px;
    font-family: 'Segoe UI';
    font-weight: 600;
}

.table thead th {
    background-color: #ff8f00; /* Laranja Médio */
    color: white;
}

.table tbody tr:nth-child(even) {
    background-color: #f8f9fa; /* Fundo alternado suave */
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
  background-color: #b6f5ff;
}

.btn-primary {
    background-color: #ff8f00; /* Laranja Médio */
    border-color: #ff8f00;
}

.btn-primary:hover {
    background-color: #ffa726; /* Laranja Claro */
    border-color: #ffa726;
}

.text-success {
    color: #388e3c; /* Verde Escuro */
}

.text-danger {
    color: #d32f2f; /* Vermelho Escuro */
}

.navbar {
    background-color: #ffffff; /* Branco */
    border-bottom: 2px solid #ff8f00; /* Laranja Médio */
}

.navbar .navbar-brand, .navbar .nav-link {
    color: #0066ff; /* Laranja Médio */
    font-size: 1.2rem; /* Aumenta o tamanho da fonte */
    font-family: 'Segoe UI';
}

.navbar .nav-link:hover {
    color: #0400ff; /* Laranja Escuro */
}

.dropdown-menu {
    background-color: #ffffff; /* Branco */
    border: 1px solid #ff8f00; /* Laranja Médio */
}

.dropdown-item {
    color: #ff8f00; /* Laranja Médio */
    font-size: 1rem; /* Aumenta o tamanho da fonte */
}

.dropdown-item:hover {
    background-color: #ffe0b2; /* Laranja Muito Claro */
    color: #ff6f00; /* Laranja Escuro */
}

.navbar-brand img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

body, html {
    height: 100%;
    margin: 0;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #ffffff; /* Branco */
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.login-container img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.login-container h2 {
    margin-bottom: 20px;
    color: #ff6f00; /* Laranja Escuro */
}

.login-container .form-control {
    margin-bottom: 15px;
}

.table-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-actions .btn {
    margin-right: 10px;
}

.table-actions .btn:last-child {
    margin-right: 0;
}

.modal-header {
    background-color: #ff8f00; /* Laranja Médio */
    color: white;
}

.modal-footer .btn-secondary {
    background-color: #388e3c;
    border-color: #388e3c;
}

.modal-footer .btn-secondary:hover {
    background-color: #4caf50;
    border-color: #4caf50;
}

.table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
}

.table tfoot {
    position: sticky;
    bottom: 0;
    background-color: #f8f9fa; /* cor clara para destacar */
    font-weight: bold;
    z-index: 2;
}