html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}



.pricing-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1.25rem 0;
    -webkit-overflow-scrolling: touch;
}

.pricing-card {
    min-width: 320px; /* card width on narrow screens */
    max-width: 450px;
    flex: 0 0 auto;
    border-radius: 0.75rem;
    box-shadow: 0 6px 20px rgba(20,20,50,0.06);
    border: 1px solid rgba(20,20,50,0.04);
}

.badge-plan {
    font-weight: 600;
    letter-spacing: 0.2px;
}

.price-big {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-small {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Highlight Premium and Pro */
.popular {
    border: 1px solid #0d6efd;
    box-shadow: 0 10px 30px rgba(13,110,253,0.08);
}

/* Make features list compact */
.features {
    font-size: 0.95rem;
}

.card-body {
    display: flex;
    flex-direction: column;
}

/* Minimal Rounded Scrollbar */
.pricing-row::-webkit-scrollbar {
    height: 8px;
    background-color: #343a40 !important;
}

.pricing-row::-webkit-scrollbar-track {
    background: #343a40;
    border-radius: 50px;
}

.pricing-row::-webkit-scrollbar-thumb {
    background: #bdbdbd;
    border-radius: 50px;
}

    .pricing-row::-webkit-scrollbar-thumb:hover {
        background: #9e9e9e;
    }

/* Firefox */
.pricing-row {
    scrollbar-width: thin;
    scrollbar-color: #bdbdbd #e6e6e6;
}


@media (min-width: 992px) {
    .pricing-row {
        justify-content: left;
    }

    .pricing-card {
        min-width: 380px;
    }
}