body {
    font-family: Arial;
    background: #f5f5f5;
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-4px);
}

.card-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    margin-top: 6px;
    background: #eee;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.status {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #e6eefb;
    color: #21406d;
}

.status[data-tone="error"] {
    background: #fdeaea;
    color: #8a2424;
}

.empty-state {
    padding: 24px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    color: #555;
}
