@charset "utf-8";

*{margin:0px; padding:0px;}



html{overflow-x: hidden;}
body{overflow-x: hidden; font-size: 14px;  color:#222222; font-family: "Poppins", sans-serif; background-color: #F5F7FA ; font-weight: 500;}

.school_input{color: #000; background-color: #F2F2F2; border: 1px solid #ccc; border-radius: 5px; font-size: 14px; font-weight: 400; padding: 10px 20px;}
.school_input:focus {box-shadow: none;}
.accordion {
    background: var(--bs-accordion-active-bg);
    padding: 3px;
    border-radius: var(--bs-border-radius);
}

:root {
      --primary-color: #007bff;
      --font-size-base: 16px;
    }
$accordion-icon-active-color: #ff0000;
.accordion-item {
    border: none;
}

.btn_style {
    color: #fff;
    position: relative;
    font-weight: 500;
    background: #325bff;
    background-size: 200% 100%;
    z-index: 1;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    padding: 10px 40px;
}

.btn_style:hover {
    color: #fff;
    position: relative;
    font-weight: 500;
    background: #4361ee;
    background-size: 200% 100%;
    z-index: 1;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    padding: 10px 40px;
}


.steps-horizontal {
    display: flex;
    justify-content: space-between;
   /* align-items: flex-start;
    max-width: 800px;*/
    position: relative;
    padding: 0;
}

 .steps-horizontal::before {
        content: '';
        position: absolute;
        top: 46px;
        left: 54px;
        right: 54px;
        height: 2px;
        background: #e9ecef;
        z-index: 1;
    }

.step-horizontal {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding:15px;
    margin:5px;
   
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.step-description {
    font-size: 12px;
    color: #000;
    max-width: 150px;
    margin: 0 auto;
}

.step-horizontal.active .step-icon {
    background: #4361ee;
    border-color: #4361ee;
    color: white;
    box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.2);
}

.step-horizontal.complete .step-icon {
    background: #2ecc71;
    border-color: #2ecc71;
    color: white;
}

.step-item {
    position: relative;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.bi-check-lg {
    font-size: 30px !important;
}


/* Pagination polish */
.pagination .page-link {
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    color: #333;
    padding: .45rem .65rem;
    border-radius: .375rem;
    transition: transform .08s ease, box-shadow .12s ease;
}

.pagination .page-item:not(.disabled) .page-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(33,37,41,0.06);
    z-index: 1;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(180deg,#0d6efd,#0b5ed7);
    border-color: #0b5ed7;
    color: #fff;
    box-shadow: 0 6px 18px rgba(11,93,215,0.18);
}

.pagination .page-item.disabled .page-link {
    opacity: .6;
    pointer-events: none;
}

/* smaller pagination for compact table footers */
.pagination.pagination-sm .page-link {
    padding: .25rem .45rem;
    font-size: .875rem;
}

/* responsive wrap */
@media (max-width: 576px) {
    .pagination {
        flex-wrap: wrap;
        gap: .25rem;
        justify-content: center;
    }
}







