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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.light-indicator {
    width: 25px;
    height: 25px;
    transition: background-color 0.3s ease-in-out;
}

.bg-green {
    background-color: green;
}

.bg-red {
    background-color: red;
}

/* Spiffs */

.incentive-box {
    width: 200px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.incentive-gold {
    background-color: green;
    color: black;
    margin-right: 1rem;
    color:white;
}

.incentive-silver {
    background-color: silver;
    color: black;
}

/*Loading Images*/

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-fixed-image {
    width: 483px;
    height: 202px;
    animation: spin 2s linear infinite, zoom 2s ease-in-out infinite;
    transform-origin: center center;
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes zoom {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }
}

/* Styling for the top performer card */
.top-performer-card {
    border: 3px solid gold;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fffbea;
}

    .top-performer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

.top-performer-img {
    border: 4px solid gold;
}

.full-width-tabs {
    display: flex;
    width: 100%;
}

    .full-width-tabs .nav-item {
        flex-grow: 1;
        text-align: center;
    }

    .full-width-tabs .nav-link {
        width: 100%;
    }

.small-text {
    font-size: 0.85rem; /* Adjust as needed */
}
