/* Estilos gerais */
body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.container {
    max-width: 1200px;
}

h2 {
    color: #007bff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
}

/* Formulários */
.form-control, .form-select {
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-label {
    font-weight: 500;
}

/* Botões */
.btn-primary, .btn-success, .btn-danger {
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Tabelas */
.table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table thead {
    background-color: #007bff;
    color: #fff;
}

.table th, .table td {
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: #f1f3f5;
}

/* Alertas */
.alert-success, .alert-danger, .alert-info {
    border-radius: 8px;
}

/* Cartões */
.card {
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.card-header {
    background-color: #007bff;
    border-bottom: none;
}

.card-footer {
    background-color: #f8f9fa;
    border-top: none;
}

.card-body {
    padding: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .table {
        display: block;
        overflow-x: auto;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
}

/* Listas */
.list-group-item {
    border-radius: 4px;
    margin-bottom: 10px;
}

.list-group-flush .list-group-item {
    border: none;
    padding: 0.25rem 0;
}

/* Badge */
.badge {
    font-size: 0.75rem;
}

/* Input */
.input-group-sm textarea {
    resize: vertical;
    min-height: 40px;
}

/* Paginação */
.pagination .page-link {
    border-radius: 4px;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

/* Footer */
footer {
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
}

.text-muted {
    color: #6c757d !important;
}
.dropdown-menu {
    background-color: #f8f9fa;
}
.dropdown-item:hover {
    background-color: #007bff;
    color: white;
}