body {
    background-color: #f8f9fa;
}

.navbar {
    margin-bottom: 20px;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-header {
    font-weight: bold;
}

.list-group-item {
    border-left: none;
    border-right: none;
    padding: 12px 15px;
    transition: all 0.2s ease;
}

.list-group-item:first-child {
    border-top: none;
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.list-group-item i {
    margin-right: 10px;
}

.table-container {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.table-container .table th.valor,
.table-container .table td.valor {
    min-width: 120px;
    white-space: nowrap;
}

.table-container .table th.acoes,
.table-container .table td.acoes {
    min-width: 120px;
    white-space: nowrap;
}

.form-container {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.required:after {
    content: " *";
    color: red;
}

.btn-actions {
    white-space: nowrap;
}

.projetos-lista {
    max-height: 100px;
    overflow-y: auto;
}

/* Cores dos cards */
.bg-primary {
    background-color: #0d6efd !important;
}

.bg-success {
    background-color: #198754 !important;
}

.bg-info {
    background-color: #0dcaf0 !important;
}

