body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
}
hr{
    border-top: 1px solid rgba(231, 238, 240, 1);
    opacity: 1;
}
.banner-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0px !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: rgba(255, 0, 0, 1);
}
.owl-theme .owl-nav.disabled+.owl-dots{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.owl-theme .owl-dots .owl-dot span{
    background-color: #fff;
    margin: 5px;
}

.btn-item-wrapper{
    border: unset !important;
}
.btn-item {
    font-weight: 400;
    border: 1px solid rgba(193, 210, 219, 1);
    border-radius: 10px;
    background-color: rgba(248, 253, 255, 1);
    padding: 10px;
}
.nav-tabs .nav-link{
    border:unset !important;
    font-size: 1rem;
    font-weight: 400 !important;
    color: rgba(155, 155, 155, 1) !important;
}
.nav-tabs .nav-link.active{
    border:unset !important;
    border-bottom: 5px solid rgba(216, 0, 39, 1) !important;
    color: rgba(216, 0, 39, 1) !important;
    font-weight: 500 !important;
}
.form-control{
    padding: 10px;
    font-size: 15px !important;
}
.banner-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    font-size: 23px;
    font-weight: 500;
    font-family: 'Mohave', sans-serif;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header-title {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
}
.icon-nav {
    font-size: 28px;
    color: #2563eb;
}
.nav-label {
    font-size: 12px;
    color: #333;
    font-weight: 500;
}
.nav-tabs .nav-link.active {
    color: #d80027;
    border-bottom: 2px solid #d80027;
    background: none;
}
.nav-tabs .nav-link {
    color: #888;
    font-weight: 600;
}
.form-label {
    font-size: 13px;
    font-weight: 500;
}
.form-control {
    font-size: 13px;
    border-radius: 8px;
}
.upload-note {
    font-size: 11px;
    background: #fff3cd;
    color: #856404;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 12px;
}
.btn-next, .btn-upload,.upload-btn,.btn-main {
    background: #d80027 !important; 
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    padding: 10px;
    border: unset !important;
    box-shadow: unset !important;
    width: 100%;
}

.btn-main[disabled="true"], .btn-main:disabled,
.btn-next[disabled="true"], .btn-next:disabled {
    color: #fff;
    background: #bdbdbd !important;
    border: unset !important;
    opacity: 1 !important;
    cursor: not-allowed;
}
.owl-carousel .item img {
    width: 100%;
    border-radius: 8px;
}
.main-card {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding-bottom: 24px;
}


.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.step-indicator span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    margin: 0 5px;
    background: #e0e0e0;
    color: #333;
}
.step-indicator .active {
    background: #dc3545;
    color: #fff;
}
.participant-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}
.upload-btn:hover {
    background: #c82333;
}

.bg-light{
    background-color: rgba(230, 251, 255, 1) !important;
    border:1px solid rgba(207, 232, 253, 1) !important;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .main-card {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
    .banner-text {
        font-size: 1.2rem;
    }
    .modal-content {
        padding: .8rem !important;
    }
    .icon-nav {
        font-size: 22px;
    }
}


/* HTML: <div class="loader"></div> */
.loader {
  --d:22px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  color: #25b09b;
  box-shadow: 
    calc(1*var(--d))      calc(0*var(--d))     0 0,
    calc(0.707*var(--d))  calc(0.707*var(--d)) 0 1px,
    calc(0*var(--d))      calc(1*var(--d))     0 2px,
    calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 3px,
    calc(-1*var(--d))     calc(0*var(--d))     0 4px,
    calc(-0.707*var(--d)) calc(-0.707*var(--d))0 5px,
    calc(0*var(--d))      calc(-1*var(--d))    0 6px;
  animation: l27 1s infinite steps(8);
}
@keyframes l27 {
  100% {transform: rotate(1turn)}
}