﻿.signup-page-wrap {
    background-image: url(/images/loginbgimg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left: 0;
    height: 105vh;
    width: 100%;
    overflow-y: auto;
}

.save-btn-custom {
    cursor: pointer;
    min-width: 200px;
    border: none;
    margin-top: 30px;
    position: relative;
    text-align: center;
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;  
    background: linear-gradient(to top, #042954, #0b4776);
    border-radius: 6px;
    padding: 16px 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

    .save-btn-custom:hover {
        background: linear-gradient(to right, #05336c, #0a5aa8);
        outline: 0;
        transform: translateY(-1.1px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    }

.table-header-custom {
  background-color: #042954!important;
  color:#fff!important
}
.is-invalid {
    border: 1px solid red !important;
}

.is-invalid-container {
    border: 1px solid red !important;
    border-radius: 5px;
}


footer.footer-wrap-layout1 {
    margin-top: auto; /* pushes footer to bottom */
}

.form-control-custom {
    border: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075) !important;
}
.sidebarheaderimgcontainer {
    background: #e7e8ea!important;
}
.header-logo img {
    max-width: 175px;
}
.form-select-custom {
    border: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075) !important;
}
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #4CAF50;
}

    input:checked + .slider:before {
        transform: translateX(26px);
    }


#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 9999999;
    display: none;
    pointer-events: all;
}

    #loaderOverlay .loader-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120px;
        height: 120px;
        background-repeat: no-repeat;
        background-size: contain;
        border-radius:10px;
    }

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    margin: 0 4px;
    font-size: 16px;
    color: #fff;
    transition: 0.2s ease-in-out;
}

.edit-btn {
    background: #007bff; /* Blue */
}

    .edit-btn:hover {
        background: #0056b3;
        color: #fff;
    }

.delete-btn {
    background: #dc3545; /* Red */
}

    .delete-btn:hover {
        background: #a71d2a;
        color: #fff;
    }


/** Custom Image Picker start */
.imagePicker_container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.image_picker_label {
    font-weight: 600;
}

.image_picker_card {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eaeaea;
    padding: 6px;
    border-radius: 5px;
    background: #f0f1f3;
}

.span_imagepicker {
    font-size: 0.9rem;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.input_image_picker {
    padding: 8px 16px;
    font-size: 0.9rem;
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}
/** Custom Image Picker End */

.item-title.card-header {
    color: #fff !important;
    background: #042954db !important;
}


/* User Details Page CSS starts**/
.table_container_details {
    padding: 0;
    margin: 0;
}

.table_details {
    line-height: 1.1;
    font-size: 14px;
    border-collapse: collapse;
}

.table_row {
    height: 24px;
    border-bottom: 1px solid #f1f1f1;
}

.table-td-title {
    font-weight: 600;
    color: #555;
}

.table-td-data {
    color: #333;
}
.select2-container--default .select2-selection--multiple {
    background: #f0f1f3 !important;
    border: 1px solid #e2e2e2 !important;
}
/* User Details Page CSS End**/



.select2-selection.select2-selection--multiple {
    padding: 3px;
}

.custom-checkbox {
    position: relative;
    cursor: pointer;
    display: inline-block;
    width: 18px;
    height: 18px;
}

    .custom-checkbox input {
        opacity: 0;
        position: absolute;
        cursor: pointer;
    }

    .custom-checkbox .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 22px;
        width: 22px;
        background-color: #fff;
        border-radius: 4px;
        transition: 0.3s;
        border: 2px solid #cfcfcf;
    }

    .custom-checkbox input:checked + .checkmark {
        background-color: #28a745;
        border-color: #28a745;
    }

    .custom-checkbox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .custom-checkbox input:checked + .checkmark:after {
        display: block;
    }

    .custom-checkbox .checkmark:after {
        left: 7px;
        top: 3px;
        width: 6px;
        height: 12px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

.badge {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    color: #fff;
}

.custom_tblbody_inputs {
    min-height: 33px;
}
#voucherName {
    border: 1px solid #ddd8d8;
    font-size: 12px;
    height: 44px;
}
#duedate {
    border: 1px solid #ddd8d8;
    font-size: 12px;
    height: 44px;
    background: #fff;
}
#voucherAmount {
    border: 1px solid #ddd8d8;
    font-size: 12px;
    height: 44px;
}
#btngeneratevoucher {
    font-size: 15px;
}
.badge-partial {
    background-color: #ffc107;
    color: #000;
}

#viewFeeModal .modal-dialog {
    max-width: 1024px !important;
    width: 95% !important;
}

.modal_p {
    margin-bottom: 5px;
    color: #000;
    font-size: 13px;
}

.modal_p_receipt {
    color: #000;
    margin-bottom: 5px;
    font-size: 13px;
}

.custom-input-fields-height {
    max-height: 40px !important;
}

.custom-info-icons {
    color: #7c7c7c;
    font-size: 14px;
}

.shadow-custom-sm {
    box-shadow: 0 .125rem .25rem rgb(135 132 132 / 8%) !important;
}