﻿/***** | STUDY CENTRE | *****/

/***** | FONTS | *****/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

/*@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap");*/

/***** | BOOTSTRAP ICONS |*****/

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

/***** | ROOT | *****/

:root {
    scroll-behavior: smooth;
    --body: #f4f4f5;
    --primary: #122b54;
    --secondary: #eabf09;
    --third: #173059;
    --dark: #000000;
    --grey: #f0f0f0;
    --white: #ffffff;
    --light-dark: #BABABA;
    --dropdown-bg: #ffffff;
    --light-blue: #eef4fd;
    --download-icon: #ff0800;
    --view-icon: #138808;
    --footer: #e1e1e1;
    --pay-btn: #008124;
    --apply-btn: #ddede6;
    --coordinator-bg: #eef4fd;
}

/***** | SCROLL | *****/

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--light-dark);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--dark);
    background-image: -webkit-linear-gradient(top, var(--primary) 0%, var(--primary) 50%, var(--primary) 51%, var(--primary) 100%);
}

hr {
    color: var(--light-dark) !important;
}

/***** | MAIN SCREEN | *****/

#main {
    margin-top: 50px;
    transition: all 0.3s;
    overflow-x: hidden;
}

/***** | BODY | *****/

body {
    font-family: "Roboto", sans-serif !important;
    background-color: var(--body) !important;
}

/***** | LINK | *****/

a {
    text-decoration: none !important;
    color: white;
}

    a:hover {
        text-decoration: none !important;
    }

/***** | LIST | *****/

ul li {
    list-style: none;
}

/***** | HEADINGS | *****/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif !important;
}

h1 {
    font-size: 22px !important;
    font-weight: 700 !important;
    /* color: var(--dark) !important; */
}

h2 {
    font-size: 24px !important;
    font-weight: 800 !important;
}

h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
}

h4 {
    font-size: 20px !important;
    font-weight: 700 !important;
}

h5 {
    font-size: 18px !important;
    font-weight: 700 !important;
}

h6 {
    font-size: 15px !important;
    font-weight: 700 !important;
}

/***** | IMAGES | *****/

.banner-signin {
    background-image: url("/assets/Images/SVU-Signin-Page-BG-Img.svg");
}

/***** | PLACEHOLDER | *****/

::placeholder {
    font-size: 14px;
}

/***** DROPDOWN *****/

.select {
    border: 1px solid var(--light-dark);
    background-color: var(--dropdown-bg);
    border-radius: 3px;
    height: 37px;
    min-width: 300px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    font-size: 14px !important;
/*    color: var(--light-dark);*/
}

@media (min-width: 992px) {
    .select {
        min-width: 300px;
    }
}

/*****| BREAD CRUMBS |*****/

.breadcrumb li {
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.breadcrumb a {
    color: var(--dark);
    transition: 0.3s;
}

    .breadcrumb a:hover {
        color: var(--primary);
    }

.breadcrumb .active {
    font-family: "Roboto", sans-serif;
    color: var(--secondary) !important;
}

/***** | SEARCH BOX |*****/

.search-box {
    border-radius: 0px;
    border: 1px solid var(--light-dark);
    height: 35px;
    width: 220px;
    outline: none;
    padding: 10px;
}

    .search-box:focus {
        border: 1px solid var(--primary);
        box-shadow: none;
    }

/***** | ACCORDIAN |*****/

.accordion .accordion-button {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 5px 5px 0px 0px;
}

    .accordion .accordion-button:focus {
        box-shadow: none;
    }

.accordion-button::after {
    background-color: var(--white) !important;
}

/***** | CARD | *****/

.card {
    width: 100%;
    border: none;
    box-shadow: none;
}



/***** | UPLOAD PHOTO AND SIGNATURE |*****/

.upload-box {
    position: relative;
    width: 70%;
    height: 120px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
/*    margin: auto;*/
    align-content: center;
}
.upload-box p{
    color:var(--light-dark);
    font-size:12px;
    margin:0;
}
.upload-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.browse {
    font-size: 14px!important;
    padding: 5px!important;
    border: 1px solid #122B54!important;
}

.upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.upload-box:hover .upload-overlay {
    opacity: 1;
}

.upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    left:0;
    top:0;
}
.applicationDetails img {
    border-radius: 50% !important;
    height: 120px;
    object-fit: cover;
    width: 120px;
    margin-right:20px
}
.applicationDetails p {
    font-size: 13px;
    font-weight:500;
}
.exam-application-dropdown select {
    flex: auto !important;
    min-width: auto !important;
}
/***** | FORM |*****/
/***** | Form Control | *****/
.form-group {
    margin-bottom: 15px !important;
}

.form-control {
    border-radius: 3px;
    outline: none;
    font-size:14px!important;
}

    .form-control:focus {
        border: 1px solid var(--dark);
        box-shadow: none;
    }

/***** | Form Label | *****/

.form-label {
    display: flex;
    justify-content: flex-start;
    font-size: 14px!important;
    font-weight: 500;
}

/***** | Form Error | *****/
form label.error {
    color: red;
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
    display: block;
}
.togglePassword {
    position: absolute;
    right: 10px;
    top: 17px;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
}
/***** | Signin Form | *****/
select {
    font-size: 14px !important;
}

/***** | Signin Form | *****/

.signin form .form-control {
    border: 1px solid var(--light-dark);
    border-radius: 0px;
}

    .signin form .form-control:focus {
        border: 1px solid var(--primary);
        box-shadow: none;
    }

.signin form .form-label {
    font-size: 14px;
    font-weight: 500;
}

/***** | PAGINATION |*****/

.pagination span {
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    margin: 20px 5px;
    cursor: pointer;
    height: fit-content;
    width: fit-content;
    text-align: center;
    border-radius: 3px;
}

/***** | BUTTONS | *****/

/***** | Signin Button |*****/

.signin-btn {
    background-color: var(--primary)!important;
    color: var(--white)!important;
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 8px 15px;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 4px !important;
    margin-bottom: 10px;

}

/***** | Back Button |*****/

.back-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    margin: 20px 0;
}

/***** | Filter Button |*****/

.filter-btn {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    letter-spacing: 1px;
}

/***** | Apply Button |*****/

.table-apply-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 4px 15px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 3px;
}

/***** | Add Button |*****/

.add-btn {
    background-color: var(--primary) !important;
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 5px 15px 5px 8px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    border-radius: 20px;
}

/***** | Preview & Edit & Submit Button |*****/

.preview-btn,
.edit-btn,
.submit-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    margin: 20px 0;
}

/***** | Completed Button |*****/

.complete-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 4px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
}

/***** | Next Buttons | *****/

.svu-next-btn, .svu-next-btn[disabled="disabled"]:hover {
    background-color: var(--light-dark);
    color: var(--white) !important;
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
}
.svu-next-btn:hover {
    background-color: var(--primary);
    color: var(--white) !important;
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
}

/***** | Add Application Button |*****/
/*.add_btn {
    background: #122B54;
    color: white;
    border-radius: 20px;
    padding: 5px 17px;
    font-size: 14px;
}*/
/***** | Apply Button |*****/

.apply-btn {
    background-color: var(--apply-btn);
    color: var(--pay-btn);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 4px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
}

/***** | Pay Button |*****/

.pay-btn {
    background-color: var(--pay-btn);
    color: var(--white);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 4px 22px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
}

/***** | Payment Button |*****/

.payment-btn {
    background-color: var(--pay-btn);
    color: var(--white);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
}

/***** | Payment Page Button |*****/

.payment-page-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 4px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
}

.total-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 4px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
}

.close-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 4px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
}

/***** | TABLE |*****/

.table {
    border-radius: 5px;
    overflow: hidden;
}

    .table th {
        background-color: var(--primary) !important;
        color: var(--white) !important;
        padding: 10px 5px !important;
        font-size: 12px;
        font-weight: 400;
/*        text-transform: uppercase;*/
        text-align: justify;
    }

    .table td {
        background-color: var(--white);
        padding: 15px 5px !important;
        font-size: 13px;
        color: var(--dark);
        text-align: justify;
    }
    .table > :not(:last-child) > :last-child > * {
        border-bottom-color:transparent !important;
    }
    .exam-application .table td img {
    height: 20px;
    width: 20px;
    object-fit: fill;
}

/***** | DATA TABLE |*****/

/* Example: Custom style for pagination */
.dataTables_paginate a {
    border: 1px solid #ddd;
    color: #333;
    cursor: pointer;
    box-shadow: none !important;
}

    .dataTables_paginate a.paginate_button.current {
        background-color: #007bff;
        color: #fff;
        border: 1px solid #007bff;
        box-shadow: none !important;
    }

/* Example: Custom style for search input */
.dataTables_filter input {
    margin-left: 5px;
    padding: 5px;
    border: 1px solid #ddd;
    box-shadow: none !important;
}

/* Custom style for page length menu */
.dataTables_length select {
    box-shadow: none !important;
}

/***** | DASHBOARD TABLE |*****/

.dashboard .table th {
    background-color: var(--white) !important;
    color: var(--dark) !important;
    padding: 5px 15px;
    font-size: 14px;
/*    text-transform: uppercase;*/
    text-align: justify;
}

.dashboard .table td {
    background-color: var(--white) !important;
    padding: 12px 15px;
    font-size: 14px;
    color: var(--dark) !important;
    text-align: justify;
}

/*****| ICONS |*****/

.fa-download {
    font-size: 18px;
    cursor: pointer;
    color: var(--download-icon);
}

/***** | SIGNIN |*****/

/***** | Banner | *****/

.banner-signin,
.banner-main {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center center;
    height: 100vh;
}

.banner-layer {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    overflow: hidden;
}

.signin .card {
    min-width: 400px;
    border-radius: 5px;
    padding:0 10px!important;
}
.signin .college-name{
    color:var(--primary);
    font-weight:600;
}

@media (max-width: 600px) {
    .signin .card {
        min-width: 350px;
    }
}

.signin img {
    width: 100%;
    height: 75px;
    object-fit: contain;
}

/***** | HEADER |*****/

#header {
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
    background-color: var(--primary);
}

.header-nav .select {
    background-color: var(--white);
    border-radius: 3px;
    height: 30px;
    border-radius: 50px;
    min-width: 90px;
    display: block;
    align-items: center;
    text-align: left;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    padding-left: 5px;
}

@media (max-width: 486px) {
    .header-nav select {
        width: 130px;
    }
}

/***** | Header Welcome Name |*****/

#header .welcome-name p {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

#header .welcome-name span {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 576px) {
    #header .welcome-name p,
    #header .welcome-name span {
        display: none;
    }
}

/***** | Header Logo | *****/

#header .university-logo {
    height: 50px;
    margin-left: 10px;
    object-fit: contain;
}

/***** | Notification Icon | *****/

#header .notification-icon {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--secondary);
}

    #header .notification-icon i {
        font-size: 26px;
    }

#header .notification-card {
    height: fit-content;
    width: 380px;
    margin: 10px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0) 2px !important;
    cursor: pointer;
    border: 1px solid var(--light-dark);
}

    #header .notification-card span {
        color: var(--light-dark);
    }

    #header .notification-card .notification-date {
        font-size: 13px;
    }

#header .dropdown-menu .badge {
    background-color: var(--primary);
    font-size: 12px;
    font-weight: 400;
}

#header .dropdown-footer u {
    font-size: 13px;
    color: var(--primary);
    padding: 0 0 0 10px;
}

/***** | Header Profile | *****/

#header .profile-pic {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

#header .header-nav .nav-profile li span {
    font-size: 14px;
    font-weight: 600;
}

#header .header-nav .dropdown-menu .dropdown-item {
    transition: 0.3s;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 3px;
    width: fit-content;
    padding: 4px 25px;
}

#header .header-nav .dropdown-menu {
    min-width: max-content !important;
    margin: 4px !important;
}

    #header .header-nav .dropdown-menu i {
        margin-right: 8px;
        font-size: 14px;
        line-height: 0;
    }

#menu-toggle {
    font-size: 34px;
    color: var(--white);
    cursor: pointer;
    display: flex;
}

/***** | DASHBOARD | *****/
/***** | News |*****/
.news .text-nowrap {
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.news span {
    display: inline-block;
    transform: translateX(100%);
    animation: move 20s linear infinite;
}

@keyframes move {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/***** | Charts | *****/

.chart {
    width: 100%;
    max-height: 280px;
}

@media (min-width: 768px) {
    .chart {
        width: 100%;
        min-height: 280px;
    }
}

.labels p {
    font-size: 12px;
    font-weight: 500;
}
/***** | PROFILE | *****/
.profile {
    width: 80%;
    margin: 30px auto;
}

.profile_header h1 {
    color: var(--white);
    font-size: 22px;
    position: absolute;
    left: 140px;
    bottom: 10px;
}

.profile h4 {
    font-size: 16px;
}

.profile .profile_header {
    background: linear-gradient(90deg, #310E5E 21.4%, #00388E 100%);
    height: 100px;
    align-content: center;
    position: relative;
}
.profile_header img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: 30%;
}

.profile form label, .profile form input {
    font-size: 14px !important;
}

.reset_btn {
    background: #FAAA54 !important;
    color: var(--white);
    width: 100px;
}

.save_btn {
    background: var(--primary)!important;
    color: var(--white)!important;
    width:100px;
}

/***** | DASHBOARD | *****/
.application-body h4{
    background: var(--secondary);
    display: inline-block;
    padding: 7px 10px;
    border-radius: 3px;
    font-size: 14px !important;
}
.application-body label {
    color :#555555;
    font-size:14px;
}
.application-details {
    width: 95%;
    margin:auto;
}
.application-header{
    background:var(--white)!important;
    padding:20px 30px!important;
}

.application-body
{
    padding:10px 30px;
}
/*****| REGISTRATION FORM |*****/

.registration .registration-details-title,
.admission-application-details-title .card {
    border-top: 3px solid var(--primary);
}

.registration .card-title {
    background-color: var(--primary);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.registration .form-control {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--light-dark);
    border-radius: 0;
    outline: none;
    width: 350px;
    padding: 0;
}

.registration .select {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--light-dark);
    border-radius: 0;
    outline: none;
    width: 350px;
    padding: 0;
    background-color: var(--white) !important;
    height: 30px !important;
}

.registration input {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--light-dark);
    border-radius: 0;
    outline: none;
    width: 350px;
    padding: 0;
    background-color: var(--white) !important;
    height: 30px !important;
}

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
    }

@media (max-width: 600px) {
    .registration .form-control {
        width: 300px;
    }
}

@media (max-width: 600px) {
    .registration select {
        width: 300px;
    }
}

.registration .form-control:focus {
    box-shadow: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--primary);
}

.registration select:focus {
    box-shadow: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--primary);
}

.registration .form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--dark);
}

.registration .dropdown button {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--light-dark);
    border-radius: 0;
    outline: none;
    width: 400px;
    padding: 0;
    background-color: var(--white);
}

    .registration .dropdown button:hover {
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid var(--light-dark);
        border-radius: 0;
        outline: none;
        width: 400px;
        padding: 0;
        background-color: var(--white);
    }

@media (max-width: 600px) {
    .registration .dropdown button {
        width: 300px;
    }
}

.registration .dropdown button:focus {
    box-shadow: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--primary);
}

.registration .upload-details .box {
    width: 250px;
    height: 170px;
    border: 1px solid var(--light-dark);
    margin-bottom: 20px;
}

.registration .upload-details .box-topic {
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 3px;
    margin-bottom: 20px;
}

/*****| REGISTRATION PREVIEW FORM |*****/

.registration-preview-form input {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--light-dark);
    border-radius: 0;
    outline: none;
    width: 350px;
    padding: 0;
    background-color: var(--dropdown-bg) !important;
    height: 35px !important;
}

.registration-preview-form .registration-details-title,
.admission-application-details-title .card {
    border-top: 3px solid var(--primary);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.registration-preview-form .card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.registration-preview-form .card-title {
    background-color: var(--primary);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.registration-preview-form .form-control {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--light-dark);
    border-radius: 0;
    outline: none;
    width: 320px;
    padding: 0;
}

@media (max-width: 600px) {
    .registration-preview-form .form-control {
        width: 300px;
    }
}

.registration-preview-form .form-control:focus {
    box-shadow: none;
}

.registration-preview-form .form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--dark);
}

.registration-preview-form .upload-details .box {
    width: 250px;
    height: 170px;
    border: 1px solid var(--light-dark);
    margin-bottom: 20px;
}

.registration-preview-form .upload-details .box-topic {
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 3px;
    margin-bottom: 20px;
}

.registration-preview-form .upload-details .box img {
    height: 150px;
    width: 220px;
    object-fit: contain;
}

/*****| PAYMENT PAGE |*****/

.payment-page input {
    max-width: 300px;
    height: 35px;
    border: 1px solid var(--light-dark);
}

.payment-page .expire-box {
    max-width: 95px;
}

.payment-page .form-check-input {
    color: var(--dark);
    border: 2px solid;
    height: 16px;
}

.payment-page .atm-card {
    height: 30px;
    width: 40px;
    object-fit: contain;
    border-radius: 0;
}

.payment-page .modal-content {
    min-width: 650px;
}

@media (max-width: 600px) {
    .payment-page .modal-content {
        min-width: 350px;
    }
}

.payment-page .card {
    margin: 0;
}

.fees-details ul li span {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    width: 120px;
    margin-right: 80px;
    text-align: justify;
}

.fees-details ul li {
    font-size: 14px;
    font-weight: 700;
}

.fees-details hr {
    margin: 10px 0px 10px 0px;
}

.fees-details ul li :after {
    content: ":";
    position: absolute;
    right: 0;
}

/*****| PAYMENT SLIP |*****/

.payment-success {
    height: 80px;
    width: 150px;
    object-fit: contain;
}

.payment-slip-summary ul li span {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    width: 120px;
    margin-right: 40px;
    margin-bottom: 10px;
}

.payment-slip-summary ul li {
    text-align: justify;
    font-size: 14px;
    font-weight: 700;
}

    .payment-slip-summary ul li :after {
        content: ":";
        position: absolute;
        right: 0;
    }

.payment-slip-summary hr {
    margin: 0 0px 15px 0px;
}

.payment-slip .card {
    max-width: 350px;
    max-height: 310px;
    background-color: var(--coordinator-bg);
}

/***** | SELECTED SUBJECTS TOTAL |*****/
#selectedSubjectsSummary .summary-box {
    display: inline-block;
    color: var(--white);
    background: var(--primary);
    padding: 7px 15px;
    border-radius: 6px;
    width: fit-content;
    font-size:14px
}
#selectedSubjectsSummary .summary-box span {
    background: var(--white);
    color: var(--primary);
    padding: 2px 5px;
    border-radius: 3px;
}


/***** | PAYMENT SUMMARY |*****/
.payment-summary.p-3 p {
    font-size: 13px;
    color: #555555;
}
.payment-summary h6{
font-weight:500!important;
    margin-bottom:3px;
}
.payment-summary span{
    margin-top:5px;
    font-size:13px;
}
.payment-summary {
    background-image: radial-gradient(#f7eded, #f4f5f4, #ffffff);
}
    /***** | NOTIFICATIONS |*****/
    .notice .date-badge {
        background-color: var(--primary);
        border-radius: 5px;
        padding: 6px 10px;
        font-size: 11px;
        font-weight: 500;
    }

.notice .alert-badge {
    width: 60px;
    height: 23px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 50px;
    padding: 6px;
}

/****| SIDE BAR |****/

/* Initially hide the sidebar and shift the main content */
#sidebar {
    right: 240px; /* Adjust the value to your desired hidden width */
    transition: all 0.3s;
}

#main {
    margin-left: 240px; /* Adjust the value to your desired main content position */
    transition: all 0.3s;
}

#footer {
    right: 0px; /* Adjust the value to your desired hidden width */
    margin-left: 240px; /* Set initial left position */
    transition: all 0.3s;
}

/* Show the sidebar and adjust the main content when the 'active' class is added */
#sidebar.active {
    left: -180px;
}

#sidebar.active ul {
    width: 100%;
    flex-direction: column;
    display: flex;
}

#sidebar.active .nav-item .nav-link {
    float: right;
    width: auto;
}

#sidebar.active .nav-item .nav-link .bi:not(:first-child) {
    display: none; /* Hide all bi icons except the first one */
}

#sidebar.active .nav-item .nav-link h6 {
    display: none;
}

.sidebar .nav-item .nav-link.active {
    background-color: var(--secondary);
    color: var(--primary);
}

#sidebar.active .nav-item .collapse, #sidebar.active .version {
    display: none;
}

#main.active {
    margin-left: 60px; /* Match the width of the sidebar */
}

.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 240px;
    z-index: 996;
    overflow-y: auto;
    scrollbar-width: thin;
    transition: transform 0.3s ease;
    background-color: var(--primary);
}

@media (max-width: 1199px) {
    .sidebar.is-closed {
        transform: translateX(-19em);
    }
}

@media (min-width: 1200px) {
    #main {
        margin-left: 240px;
    }

    .header .toggle-sidebar-btn {
        display: none;
    }
}

.sidebar-nav .nav-item {
    margin-bottom: 20px;
    background: var(--third);
    border-radius: 3px;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    padding: 3px;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: white !important;
    border-radius: 3px;
    padding: 8px 15px 8px 15px;
    width: 220px;
    margin-left: auto;
    margin-right: auto;
}

    .sidebar-nav .nav-link i {
        font-size: 16px;
        margin-right: 18px;
        color: var(--white);
    }

.sidebar .nav-item .nav-content .nav-link {
    display: flex;
    align-items: center;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 20px;
    padding: 10px 12px !important;
    width: 200px;
    height: 38px;
}

.sidebar ul {
    padding: 5px 20px;
}

.sidebar-nav h6 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 0;
    margin-left: 15px;
    line-height: 20px;
}

.sidebar .nav-item .nav-link.active {
    background-color: var(--secondary);
}

.sidebar .sidebar-nav .nav-link:hover {
    background-color: var(--secondary);
}

.sidebar .sidebar-nav .nav-content li :hover {
    background-color: var(--primary);
    color: var(--secondary);
}

.sidebar-nav .nav-link .bi-caret-down {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-caret-down {
    transform: rotate(180deg);
}

.sidebar .help,
.version {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
}

/***** | HELP |*****/

.help .accordion-button {
    font-size: 16px;
    padding: 10px;
    border-radius: 0 !important;
}

/***** | FOOTER |*****/

#footer {
    position: absolute;
    background-color: var(--footer);
    padding: 5px 5px;
    bottom: 0;
    clear: both;
    position: relative;
}

    #footer p {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 0;
    }

    #footer .designed {
        text-transform: uppercase;
        background-image: linear-gradient(-225deg, #231557 0%, #44107a 29%, #ff1361 67%, #fff800 100%);
        background-size: auto auto;
        background-clip: border-box;
        background-size: 200% auto;
        color: var(--white);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: textclip 2s linear infinite;
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
    }

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}
.row.dt-row + .row {
    display: none;
}

/*#example_wrapper .row .col-md-6 #example_length {
    display: none;
}
#example_wrapper .row .col-md-6 #example_filter{
    position:absolute;
    top:18px;
    right:10px;
}*/


/***** | PAYMENT SECTION |*****/
.paymentSection {
    background: white;
    width:500px;
    margin: auto;
    padding: 15px;
    border-radius: 12px;
  text-align:center;
}
.paymentSection p{
    margin:0
}
    .paymentSection .tick {
        background: #008124;
        color: white;
        border-radius: 50%;
        padding: 4px;
    }
    .paymentSection .cross {
        background: red;
        color: white;
        border-radius: 50%;
        padding: 4px;
    }
    .paymentSection .date {
        color: #555555;
        font-size:12px;
    }
    .paymentSection h6 {
        color: #008124;
        text-align:center;
        font-size:28px!important;
    }
.paymentSummaryContent {
    background: #EEF4FD;
    padding: 15px;
    border: 1px solid #000000;
    border-radius:10px;
    margin:10px 0;
    text-align:left;
}
    .paymentSummaryContent h4 {
        color: #122B54;
        font-size:16px;
       
    }
    .paymentSummaryContent p {
        margin: 0;
        color: #646464;
        font-size: 14px;
        margin-top: 10px;
    }
    .paymentSummaryContent span {
        color: #000000; 
        font-size:14px;
       
    }
.paymentButtons {
    display:flex;
    justify-content:space-between;
}
    .paymentButtons a {
        width: 100%;
        color: inherit !important;
        display: block;
        padding: 8px 12px;
    }
    .paymentButtons button:nth-child(1) {
        background: white;
        color: #000000;
        border: 1px solid #000000;
        border-radius: 4px;
        font-size: 14px;
       
        /*    width:100px;*/
    }
    .paymentButtons button:nth-child(1):hover {
        background: #000000;
        color: #ffffff;

    }
    .paymentButtons button:last-child {
        background: #008124;
        color: #ffffff;
        border: 1px solid #008124;
        border-radius: 4px;
        font-size: 14px;
       
        width: 100px;
    }
    .paymentButtons button:last-child:hover{
        background: #ffffff;
        color: #008124;
       
    }
    .downloadReceipt{
        display:flex;
        align-content:center;
        gap:5px;
        font-size:12px;
    }

.pagination-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 1rem;
}

.pagination {
    margin: 0;
    --bs-pagination-hover-border-color: none !important;
    --bs-pagination-hover-bg: none !important;
    box-shadow: none !important;
    --bs-pagination-focus-box-shadow: none !important;
    --bs-pagination-focus-bg: none !important;
    align-items: center;
}

a {
    cursor: pointer;
    text-decoration: none;
}

.page-item {
    display: inline-block;
    margin: 0 2px; /* optional: add margin to space out the items */
}

.page-link {
    color: black !important;
    text-decoration: none;
    background-color: transparent;
    border: none;
    padding: 2px; /* default padding for all links */
    border-radius: 3px;
}

/* Add padding only to the active page item link */
.page-item.active .page-link {
    padding: 0px 7px;
    color: black !important;
}

.page-item:last-child .page-link {
    font-weight: normal;
    font-size: 16px;
    border-top-right-radius: var(--bs-pagination-border-radius);
    border-bottom-right-radius: var(--bs-pagination-border-radius);
}


.disabled > .page-link, .page-link.disabled {
    z-index: 3;
    color: black !important;
    background-color: transparent !important;
    border-color: black;
}

.active > .page-link, .page-link.active {
    z-index: 3;
    color: black!important;
    background-color: #fff !important;
    border: 1px solid black
}

.page-link.ellipsis {
    font-family: system-ui, sans-serif;
}

.figma-btn {
    background: #122B54;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content:center;
    gap: 8px; /* space between text & icon */
    font-size: 12px;
    cursor: pointer;
    height: 40px; /* matches Figma */
    width:140px;
}

    .figma-btn img {
        width: 16px;
        height: 16px;
    }

    .figma-btn a {
        color: #ffffff;
        text-decoration: none;
    }
    .figma-btn a:hover {
        color: #ffffff !important;
        text-decoration: none;
    }
#footer {
    position: fixed;
    bottom: 0;
    width: calc(100vw - 240px);
    white-space: nowrap;
}
/*minor paper*/
.custom-select-ui {
    border: 2px solid #c7d7ff !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    background-color: #fff !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    font-size: 15px;
    transition: all .15s ease-in-out;
}

    .custom-select-ui:focus {
        border-color: #6e8cff !important;
        box-shadow:none;
    }

    .custom-select-ui option {
        padding: 10px !important;
    }

.pretty-label {
    font-weight: 600;
    color: RGB(18, 43, 84);
    margin-bottom: 6px;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0.3px;
}


