/* ============================================================
   DASHBOARD ONLY
   ============================================================ */

/* ===== PROFILE ===== */
.profile-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ===== AVATAR ===== */
.avatar {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    cursor: pointer;
}

.avatar .edit-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(7, 91, 199, 0.25);
}

.profile-info h4 {
    font-size: 16px;
    font-weight: 700;
}

.profile-info p {
    font-size: 13px;
    color: var(--muted);
}

.profile-right {
    margin-left: auto;
    text-align: right;
}

.profile-right .saldo {
    font-size: 18px;
    font-weight: 800;
    color: var(--blue);
}

/* ===== MENU GRID ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 12px 0;
}

.menu-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    color: var(--navy);
    text-decoration: none;
    transition: 0.2s;
}

.menu-item i {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
    color: var(--blue);
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(7, 91, 199, 0.1);
}

/* ===== FOOTER ACTIONS ===== */
.footer-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.footer-actions .btn {
    flex: 1;
}