/* dashboard-styles.css */
:root {
    --primary-color: #4e73df;
    --success-color: #1cc88a;
    --info-color: #36b9cc;
    --warning-color: #f6c23e;
    --danger-color: #e74a3b;
}

.dashboard-stat-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2rem;
    opacity: 0.7;
}

.badge-counter {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

.table-actions {
    min-width: 150px;
}

.quick-link-card {
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    background-color: #f8f9fa;
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-stat-card .card-body {
        padding: 1rem;
    }

    .table-responsive {
        font-size: 0.875rem;
    }

    .btn-group-sm .btn {
        padding: 0.25rem 0.5rem;
    }
}

/* Animation for new items */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}
