.wawi-overview-page {
    background: #f7f8fc;
    min-height: 100vh;
    padding: 1rem;
}

.wawi-overview-card {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    border-radius: 14px;
}

.wawi-kpi-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wawi-kpi-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.75rem;
    min-width: 130px;
    flex: 1 1 calc(50% - 0.75rem);
}

.wawi-kpi-label {
    color: #475569;
    font-size: 0.85rem;
}

.wawi-kpi-value {
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 700;
}

.wawi-action-row {
    margin-top: 0.75rem;
}

.wawi-description {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.wawi-description-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    border: 0;
    background: #eff6ff;
    color: #0f172a;
    font-weight: 600;
    padding: 0.75rem 0.9rem;
    text-align: left;
}

.wawi-description-body {
    padding: 0.85rem 0.9rem;
}

.wawi-description-body p {
    margin: 0 0 0.6rem;
    color: #334155;
}

.wawi-description-body ul {
    margin: 0;
    padding-left: 1rem;
    color: #334155;
}

.wawi-overview-page .weather-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.wawi-overview-page .weather-tab-button {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
}

.wawi-overview-page .weather-tab-button.active {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.wawi-overview-page .weather-tab-panel {
    display: none;
}

.wawi-overview-page .weather-tab-panel.active {
    display: block;
}

.wawi-balance-table,
.wawi-transaction-table {
    width: 100%;
}

.wawi-layout-head {
    display: flex;
}

.wawi-layout-picker {
    width: 100%;
}

.wawi-layout-shell {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.wawi-layout-canvas {
    min-width: 0;
}

.wawi-col-lot,
.wawi-col-ref,
.wawi-col-target {
    display: none;
}

@media (min-width: 768px) {
    .wawi-kpi-card {
        flex: 1 1 calc(25% - 0.75rem);
    }

    .wawi-layout-picker {
        max-width: 320px;
    }

    .wawi-col-target,
    .wawi-col-lot {
        display: block;
    }
}

@media (min-width: 1024px) {
    .wawi-layout-shell {
        flex-direction: column;
    }

    .wawi-col-ref {
        display: block;
    }
}
