/* Dashboard Styles */
.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
}

.dashboard-card {
    background: white;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dashboard-card .card-body {
    padding: 1.5rem;
}

.dashboard-stat {
    text-align: center;
    padding: 1rem;
}

.dashboard-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dashboard-stat .stat-label {
    color: #6c757d;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-primary { color: #007bff; }
.stat-success { color: #28a745; }
.stat-info { color: #17a2b8; }
.stat-warning { color: #ffc107; }
.stat-danger { color: #dc3545; }

.chart-container {
    position: relative;
    height: 300px;
    margin: 1rem 0;
}

.chart-pie-container {
    position: relative;
    height: 250px;
    margin: 1rem 0;
}

.activity-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.activity-icon.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.activity-icon.warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.activity-icon.info {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.activity-icon.danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.quick-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.quick-actions .btn {
    flex: 1;
    min-width: 120px;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pendente {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.status-aprovada {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-rejeitada {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.status-agendada {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-stat .stat-number {
        font-size: 2rem;
    }
    
    .quick-actions .btn {
        min-width: 100px;
    }
    
    .chart-container {
        height: 250px;
    }
    
    .chart-pie-container {
        height: 200px;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
} 