.table td, .table th {
    max-width: none !important;
}

.user-dashboard-stats .bg-sec,
.add-business-hero .bg-sec {
    position: relative;
}
.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    left: -140px;
    top: -140px;
    background: radial-gradient(circle, rgba(0,122,255,0.18) 0%, rgba(0,122,255,0) 70%);
    filter: blur(4px);
    pointer-events: none;
}
.feature-mini .mini-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
}
.step-pill {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(0,122,255,0.12);
    color: var(--color-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}


@keyframes premiumGlow {
    0% {
        border-color: rgba(255, 193, 7, 0.4);
        box-shadow: 0 0 5px rgba(255, 193, 7, 0.2);
    }
    50% {
        border-color: rgba(255, 193, 7, 1);
        box-shadow: 0 0 15px 2px rgba(255, 193, 7, 0.9), inset 0 0 10px rgba(255, 193, 7, 0.5);
    }
    100% {
        border-color: rgba(255, 193, 7, 0.4);
        box-shadow: 0 0 5px rgba(255, 193, 7, 0.2);
    }
}
.glow-border-effect {
    animation: premiumGlow 1.5s infinite ease-in-out;
    border: 2px solid transparent !important;
    transition: all 0.3s ease;
}
.glow-border-effect:hover {
    animation: none;
    background-color: rgba(255, 193, 7, 1) !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
}