html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; /* hidden by default */
    z-index: 1080; /* must be higher than Bootstrap modals */
}

    .global-loader:not(.d-none) {
        display: flex;
    }

    .global-loader.d-none {
        display: none !important;
    }

.loader-backdrop {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    flex-direction: column;
}

    .loader-backdrop .spinner-border {
        width: 3rem;
        height: 3rem;
    }

.tilmad-brand {
    font-family: 'Segoe UI', 'Open Sans', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    background: linear-gradient(90deg, #007bff, #ff6600); /* Blue to Orange */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

    .tilmad-brand:hover {
        transform: scale(1.05);
    }