/* Reports Hub Premium Styles */
.reports-hub-container {
    padding: 25px;
    background: #f8f9fc;
    min-height: calc(100vh - 100px);
}

.reports-welcome-section {
    margin-bottom: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.2);
    position: relative;
    overflow: hidden;
}

.reports-welcome-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hub-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hub-category-title i {
    color: #764ba2;
    background: rgba(118, 75, 162, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.report-card {
    background: white;
    border-radius: 18px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border-color: #764ba2;
}

.report-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.icon-blue {
    background: rgba(59, 113, 202, 0.1);
    color: #3b71ca;
}

.icon-purple {
    background: rgba(118, 75, 162, 0.1);
    color: #764ba2;
}

.icon-green {
    background: rgba(42, 245, 152, 0.1);
    color: #2af598;
}

.icon-red {
    background: rgba(255, 8, 68, 0.1);
    color: #ff0844;
}

.icon-orange {
    background: rgba(255, 126, 95, 0.1);
    color: #ff7e5f;
}

.report-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.report-desc {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.report-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #764ba2;
    margin-top: auto;
}

.report-action i {
    transition: transform 0.3s;
}

.report-card:hover .report-action i {
    transform: translateX(5px);
}

/* Stats Row */
.hub-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.hub-stat-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-label {
    font-size: 0.8rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d3748;
}

@media (max-width: 768px) {
    .reports-welcome-section {
        padding: 25px;
    }

    .report-grid {
        grid-template-columns: 1fr;
    }
}