/* Layout e estilos gerais */
body {
    background-color: #f8f9fa;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,.05);
}

/* Dashboard */
.dashboard-card {
    transition: transform .2s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.progress {
    height: 10px;
    border-radius: 5px;
}

/* Forms */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

/* Tables */
.table th {
    background-color: #f8f9fa;
    border-top: none;
}

.table-hover tbody tr:hover {
    background-color: rgba(13,110,253,.05);
}

/* Status badges */
.badge.status-pending {
    background-color: #ffc107;
}

.badge.status-in-progress {
    background-color: #0dcaf0;
}

.badge.status-completed {
    background-color: #198754;
}

.badge.status-canceled,
.badge.status-at-risk,
.badge.status-delayed {
    background-color: #dc3545;
}

/* Charts */
.chart-container {
    position: relative;
    margin: auto;
    height: 300px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chart-container {
        height: 200px;
    }
    
    .dashboard-card {
        margin-bottom: 1rem;
    }
}
