html, body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
  padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
  outline: 1px solid #26b050;
}

#blazor-error-ui {
  background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    right: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
        position: absolute;
        left: 0.75rem;
        top: 0.5rem;
}

.p-loader {
  width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid transparent;
    border-radius: 50%;
    border-left-color: #25b09b;
    animation: l15 1s infinite linear;
}

.p-loader::before, .p-loader::after {
  content: "";
        grid-area: 1/1;
        margin: 2px;
        border: inherit;
        border-radius: 50%;
        animation: l15 2s infinite;
}

.p-loader::after {
  margin: 8px;
        animation-duration: 3s;
}

@keyframes l15 {
    100% {
        transform: rotate(1turn)
    }
}

.app-loading-overlay {
  position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.data-loading-card {
  text-align: center;
    padding: 40px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    width: 90%;
}

.preloader-progress-bar {
  width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.preloader-progress-fill {
  height: 100%;
    background: linear-gradient(90deg, #25b09b, #1b6ec2);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.preloader-progress-fill.infinite-loading {
  width: 30%;
    animation: infinite-loading-anim 1.5s ease-in-out infinite;
}

@keyframes infinite-loading-anim {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(400%);
    }
}

.preloader-status {
  margin-top: 12px;
    font-size: 0.85rem;
    color: #6c757d;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.gif-loader {
  display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}