﻿html {
    font-size: 14px;
    overflow-y: scroll;
}

@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 {
    background: #f5f7f9;
}

.no-space {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.nav-link.custom-nav-link {
    color: #0F131D !important;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

    .nav-link.custom-nav-link:hover,
    .nav-link.custom-nav-link:focus {
        background-color: #f2f2f2;
        color: #0F131D !important; /* Keep same color on hover/focus */
    }

.btn-get-in-touch {
    color: #0F131D !important;
    border: 1px solid #d1d1d1;
    border-radius: 6px;
    background-color: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 0.85rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .btn-get-in-touch:hover {
        background-color: #f2f2f2;
    }

.btn-franchise {
    background-color: #0F131D;
    color: #ffffff !important;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 0.85rem;
    transition: background-color 0.2s ease;
}

    .btn-franchise:hover {
        background-color: #1e2330; /* Slightly darker shade on hover */
    }