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 {    
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent full page scroll */
}

#global-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    text-align: center;
}

    #global-loader .spinner-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

.logo-container {
    text-align: center;
    margin-bottom: 1rem;
}

    .logo-container img {
        height: 38px;
        object-fit: contain;
    }

.navbar-brand {
    margin-left: 3rem !important;
}

.toast.text-bg-success {
    background: linear-gradient(90deg, #198754 0%, #28a745 100%);
    color: white;
}

.toast.text-bg-danger {
    background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%);
    color: white;
}

.toast.text-bg-warning {
    background: linear-gradient(90deg, #ffc107 0%, #ffcd39 100%);
    color: black;
}

.toast.text-bg-info {
    background: linear-gradient(90deg, #0dcaf0 0%, #0096c7 100%);
    color: white;
}
