/* Custom Styles for Cevin's Hub */

/* Stat Cards */
.stat-card {
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.stat-card .card-body {
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.15;
    position: absolute;
    right: 15px;
    top: 15px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Chart Cards */
.chart-card {
    height: 100%;
    transition: all 0.3s ease;
}

.chart-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Tables */
.table-card {
    transition: all 0.3s ease;
}

.table-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Quick Actions - FIX */
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 -0.5rem;
}

.quick-action-btn {
    flex: 1 1 calc(25% - 1rem);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(19, 78, 94, 0.15);
    border-color: #134e5e;
    color: #134e5e;
    text-decoration: none;
}

.quick-action-btn i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    color: #134e5e;
    transition: all 0.3s ease;
}

.quick-action-btn:hover i {
    transform: scale(1.1);
}

.quick-action-btn strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.quick-action-btn small {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.empty-state i {
    font-size: 4rem;
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, #134e5e 0%, #71b280 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #134e5e 0%, #71b280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 1200px) {
    .quick-action-btn {
        flex: 1 1 calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .quick-action-btn {
        flex: 1 1 calc(50% - 1rem);
        min-width: 150px;
        padding: 1.25rem;
    }
    
    .quick-action-btn i {
        font-size: 2rem;
    }
    
    .quick-action-btn strong {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .quick-action-btn {
        flex: 1 1 100%;
    }
}
