.novelish-dashboard-wrap {
    max-width: 960px;
    margin: 32px auto 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 12px #be9ae23a;
    padding: 24px 36px;
    color: #333;
    font-family: inherit;
}
.dashboard-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 18px;
    background: #be9ae210;
    border-radius: 16px;
    padding: 20px 20px;
}
.dashboard-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #be9ae2;
}
.dashboard-filters {
    margin-bottom: 20px;
    font-size: 16px;
}
#novelish-dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.nd-card {
    background: #faf6ff;
    border: 1.5px solid #be9ae2;
    border-radius: 18px;
    padding: 22px 20px 18px 20px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 1px 8px #be9ae233;
    position: relative;
}
.nd-card h3 {
    font-size: 20px;
    margin: 0 0 5px 0;
    color: #965fd4;
}
.nd-card .nd-value {
    font-size: 32px;
    font-weight: bold;
    color: #7d50c5;
}
.nd-card .nd-desc {
    font-size: 13px;
    color: #777;
}
@media (max-width:700px) {
    .novelish-dashboard-wrap { padding:12px }
    .dashboard-header { flex-direction:column; gap:10px; }
    #novelish-dashboard-cards { grid-template-columns:1fr; }
}
