.main-content {
    padding: 1rem !important;
    max-width: 100%;
    overflow-x: hidden;
}

.container.is-fluid {
    max-width: 100%;
    padding: 0 1rem;
    margin: 0;
}

.report-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.2s;
    overflow: hidden;
}

.report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.report-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px 8px 0 0;
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    padding: 1rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
    border-left: 4px solid #3273dc;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: bold;
    color: #363636;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #7a7a7a;
    font-size: 0.75rem;
}

.report-actions {
    padding: 0.75rem 1rem;
    background: #fafafa;
    border-top: 1px solid #dbdbdb;
    border-radius: 0 0 8px 8px;
}

.tabs.is-boxed {
    margin-bottom: 1.5rem;
}

.tabs.is-boxed li a {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
}

.tabs.is-boxed li.is-active a {
    background-color: #3273dc;
    color: white;
}

.alert-badge {
    background: #ff3860;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.success-badge {
    background: #23d160;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.warning-badge {
    background: #ffdd57;
    color: #363636;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.page-header {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.is-active {
    display: block;
}

.chart-container {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chart-wrapper {
    position: relative;
    height: 300px;
    margin-bottom: 1rem;
}

.small-chart {
    height: 200px !important;
}

@media (max-width: 768px) {
    .main-content {
        padding: 0.5rem !important;
    }

    .container.is-fluid {
        padding: 0 0.5rem;
    }

    .tabs.is-boxed li a {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .report-header {
        padding: 0.75rem;
    }

    .page-header {
        padding: 1rem;
    }
}