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;
}

body {
    background-color: #e6f0fa; /* Light blue-gray */
}

.navbar-custom {
    background-color: #1a1a2e; /* Dark navy */
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
}

    .logo .supreme {
        color: orange;
    }

    .logo .zone {
        background-color: orange;
        color: white;
        padding: 2px 6px;
        border-radius: 4px;
        margin-left: 2px;
    }
/* Stronger specificity to override Bootstrap */
.navbar-custom .navbar-nav .nav-link {
    color: white !important;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

    .navbar-custom .navbar-nav .nav-link:hover,
    .navbar-custom .navbar-nav .nav-link:focus {
        background-color: orange !important;
        color: white !important;
        border-radius: 5px;
    }
/* Custom Hamburger Icon Color */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='orange' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Fullscreen overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}

.login-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

    .login-box h2 {
        text-align: center;
        margin-bottom: 20px;
        color: #333;
        font-size: 1.6rem;
    }

    .login-box label {
        display: block;
        margin-top: 15px;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .login-box input[type="text"],
    .login-box input[type="number"] {
        width: 100%;
        padding: 12px;
        margin-top: 6px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 1rem;
    }

    .login-box button {
        margin-top: 25px;
        width: 100%;
        padding: 14px;
        background-color: #007BFF;
        border: none;
        color: white;
        font-weight: bold;
        border-radius: 4px;
        font-size: 1rem;
        cursor: pointer;
    }

        .login-box button:hover {
            background-color: #0056b3;
        }

    .login-box .note {
        font-size: 0.85rem;
        color: #666;
        margin-top: 15px;
        text-align: center;
    }

/* Responsive tweaks */
@media (max-width: 480px) {
    .login-box {
        padding: 20px 15px;
    }

        .login-box h2 {
            font-size: 1.4rem;
        }

        .login-box label {
            font-size: 0.9rem;
        }

        .login-box input,
        .login-box button {
            font-size: 0.95rem;
        }
