/* Modal Backdrop (Overlay) */
.custom-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
    display: none; /* Hidden by default */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    z-index: 9999; /* Ensure it's on top of everything */
}

/* Modal Content Box */
.custom-modal-content {
	display: flex;
    flex-direction: column;
     background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 80%;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    gap: 20px;
}

.custom-modal-content a{
	margin-top : 20px !important;
}





.custom-modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}


.custom-modal-show {
    display: flex; 
}