/* Dashboard Custom Styles */

/* Enhanced Card Animations */
.card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

/* Statistics Cards */
.avtar {
    transition: all 0.3s ease;
}

.card:hover .avtar {
    transform: scale(1.1);
}

/* Dashboard Metrics Enhancement */
.dashboard-metric-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.dashboard-metric-card .card-body {
    position: relative;
    overflow: hidden;
}

.dashboard-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

/* Table Enhancements */
.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
    transform: scale(1.001);
    transition: all 0.2s ease;
}

/* Badge Styles */
.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
}

.badge i {
    font-size: 0.8em;
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Chart Container */
#export-status-chart {
    min-height: 300px;
}

/* Quick Actions Card */
.quick-actions-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.quick-actions-card .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.quick-actions-card .btn-outline-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

/* Loading Spinner */
.ph-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Empty State Styling */
.empty-state {
    padding: 3rem 2rem;
    text-align: center;
}

.empty-state .avtar {
    margin: 0 auto 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-header-title h2 {
        font-size: 1.5rem;
    }
    
    .card-body .row .col-7 h4 {
        font-size: 1.25rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .card {
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .table-hover tbody tr:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
}

/* Success/Warning Indicators */
.success-indicator {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.warning-indicator {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

/* Status Badges */
.status-exported {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border: none;
}

.status-pending {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    border: none;
}

/* Breadcrumb Styling */
.breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
}

/* Card Header Enhancement */
.card-header {
    background: rgba(13, 110, 253, 0.03);
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
}

/* Revenue Card Special Styling */
.revenue-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.revenue-card .avtar {
    background: rgba(255, 255, 255, 0.2) !important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}
