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;
}
.badge-low {
    background: green;
    color: white;
}

.badge-moderate {
    background: orange;
    color: white;
}

.badge-high {
    background: red;
    color: white;
}

    /* Default Logo Styling (works on all screen sizes) */
.navbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    min-height: 56px; /* typical Bootstrap navbar height */
}
.logo
{
    transform:scale(100px)
}
nav.navbar.navbar-expand-sm.navbar-toggleable-sm.navbar-light.bg-white.border-bottom.box-shadow.mb-3 {
    height: 50px;
}

.navbar-brand img {
    max-height: 120px; /* Controls vertical space */
    max-width: 180px; /* Controls horizontal width */
    width: auto;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}
/* Wrapper for spacing and smooth shadow */
.mot-checker {
    max-width: 500px;
    margin: 2rem auto;
    box-shadow: 0 4px 10px rgba(0, 174, 255, 0.2);
    border-radius: 6px;
    overflow: hidden;
}

/* Input field style */
.plate-input {
    border: 2px solid #00aeff;
    border-right: none;
    background-color: #f0faff;
    color: #003b5c;
    font-size: 1.1rem;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

    .plate-input:focus {
        box-shadow: 0 0 0 0.2rem rgba(0, 174, 255, 0.4);
        outline: none;
    }



/* Check button style */
button.btn.btn-check {
    color: white;
    font-weight: 600;
    background-color: #454be8;
    position: relative;
    z-index: 2;
}
.btn-check {
    background-color: #00aeff;
    color: #fff;
    font-weight: bold;
    border: 2px solid #00aeff;
    padding: 0.6rem 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .btn-check:hover {
        background-color: #007cc2;
        border-color: #007cc2;
        color: #fff;
    }

    /* Optional: Smaller logo on extra small screens */
    @media (max-width: 576px) {
        .navbar-brand img {
            margin-top: -41px;
            max-height: 120px; /* Controls vertical space */
            max-width: 180px; /* Controls horizontal width */
            width: auto;
            height: auto;
            display: inline-block;
            vertical-align: middle;
        }
        button.navbar-toggler {
            margin-top: -44px;
        }
        .navbar-nav .nav-link {
            text-align:right;
            padding: 0.5rem 1rem;
            z-index:3;
        }
        .navbar-collapse {
            z-index: 3;
        }
        ul.navbar-nav.ms-auto {
            margin-right: -5px;
            font-weight: 600;
            font-size: small;
            width: 60px;
            background: white;
            margin-top: -47px;
        }
            body {
            font-size: 13px;
        }

        .list-group-item {
            padding: 0.5rem 0.75rem;
        }

        .card-body {
            padding: 0.75rem;
        }
    }

    /* Optional: Larger logo on large screens */
@media (min-width: 992px) {
    .navbar-brand img {
        max-height: 120px;
    }
}
    

