.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
}

.custom-modal-content {
    position: relative;
    padding: 20px;
}

.custom-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    cursor: pointer;
}

.modal-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.modal-message {
    font-size: 16px;
}

.success {
    border-top: 5px solid green;
}

.error {
    border-top: 5px solid red;
}

.mylftcol{
    top: 55px !important;
}