html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.card {
    width: 720px;
    padding: 80px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    margin: auto;
}

    .card:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }


/*Pagination CSS*/

#paginationContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

#pagination {
    margin-top: 15px !important;
}

/* Adjust margin or padding for the arrows */
#prevBtn,
#nextBtn {
    margin: 0 3px; /* Adjust spacing between buttons */
    height: 37px;
    line-height: 1;
}

    /* Optional: Adjust icon size or color */
    #prevBtn span,
    #nextBtn span {
        font-size: 1.5rem; /* Adjust icon size */
        color: #fff; /* Adjust icon color */
    }


/* Loader CSS */

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's above everything else */
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Standard syntax */
    -webkit-animation: spin 1s linear infinite; /* Safari and Chrome */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    margin-top: 20px;
    font-weight: bold;
    color: #333;
}

/*Modal popup*/

.w-90 {
    max-width: 90% !important;
}

/*Password Eye Icon*/

.eye {
    cursor: pointer;
    position: absolute;
    right: 15.5%;
    top: 61.5%;
    transform: translateY(-50%);
}

    .eye i {
        color: #333;
    }