/* App Base */
.bg-app {
    background: #f6f8fc;
}

.app-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}

.app-footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 12px 0;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Service Tiles */
.service-tile {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px 12px;
    text-align: center;
    cursor: pointer;
    transition: all .25s ease;
}

.service-tile .icon {
    font-size: 28px;
    color: var(--primary);
}

.service-tile .name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
}

.service-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.service-tile.active {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(13,110,253,.25);
}

/* Recharge Card */
.recharge-card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
