.home-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.content-panel#pane-home .home-stat-card,
.content-panel#pane-home .home-chart-card,
.content-panel#pane-home .home-urgent {
    background: rgba(240, 249, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.content-panel#pane-home .home-stat-card {
    border-radius: var(--radius);
    padding: 14px 14px 12px;
    box-shadow: none;
    color: #1e293b;
}

.content-panel#pane-home .home-stat-label {
    font-size: 12px;
    letter-spacing: 0.2px;
    color: #1e293b;
    margin-bottom: 6px;
    font-weight: 600;
}

.content-panel#pane-home .home-stat-value {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
}

.content-panel#pane-home .home-stat-value.is-critical {
    color: #ff4d4f;
    text-shadow: none;
}

.home-charts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.content-panel#pane-home .home-chart-card {
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: none;
}

.content-panel#pane-home .home-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.content-panel#pane-home .home-card-subtitle {
    font-size: 12px;
    color: rgba(30, 41, 59, 0.7);
}

.home-chart {
    width: 100%;
    height: 280px;
}

.content-panel#pane-home .home-chart-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(30, 41, 59, 0.7);
    background: rgba(255, 255, 255, 0.35);
    border-radius: var(--radius);
}

.content-panel#pane-home .home-urgent {
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: none;
}

.home-urgent-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.home-urgent .table-container {
    border: none;
    background: transparent;
    border-radius: 0;
}

.home-urgent-table {
    width: 100%;
    border-collapse: collapse;
}

.home-urgent-table th,
.home-urgent-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    white-space: nowrap;
}

.home-urgent-table thead th {
    background: #fafafa;
    font-weight: 700;
}

.home-urgent-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 1200px) {
    .home-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-charts {
        grid-template-columns: 1fr;
    }
}
