.app-vv-dashboard {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 16px 90px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: #f4f6f9;
}

.app-vv-header {
    text-align: center;
    margin: 10px 0 28px;
}

.app-vv-header h1 {
    margin: 0;
    color: #071747;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
}

.app-vv-header p {
    margin: 10px 0 0;
    color: #6d6d6d;
    font-size: 18px;
}

.app-vv-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.app-vv-card,
.app-vv-box {
    background: #ffffff;
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.app-vv-card {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 118px;
    color: inherit;
    text-decoration: none;
}

.app-vv-card:hover {
    transform: translateY(-2px);
}

.app-vv-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f1f3f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex: 0 0 56px;
}

.app-vv-card h2 {
    margin: 0 0 5px;
    color: #071747;
    font-size: 28px;
    line-height: 1.05;
}

.app-vv-card p {
    margin: 0;
    color: #666;
    font-size: 17px;
}

@media (max-width: 600px) {
    .app-vv-dashboard {
        padding: 20px 14px 86px;
    }

    .app-vv-header h1 {
        font-size: 30px;
    }

    .app-vv-header p {
        font-size: 16px;
    }

    .app-vv-card {
        border-radius: 24px;
        padding: 20px;
        min-height: 112px;
    }

    .app-vv-card h2 {
        font-size: 25px;
    }
}