.blinkit-account {
    font-family: sans-serif;
}

.ba-header {
    margin-bottom: 15px;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.ba-card {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.2s;
}

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

.ba-card .icon {
    font-size: 22px;
    display: block;
    margin-bottom: 6px;
}

.ba-card.logout {
    color: red;
}

.ba-content {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
}