 /* Button Styles */
 .cus-btn {
    padding: 10px 20px;
    background: #9B5DE5;
    color: white !important;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

/* Popup Styles */
.popup {
    width: 600px;
    display: none; /* Hidden by default */
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1000;
}

.popup-content {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.close-btn {
    position: absolute;
    top: 1px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

/* Background overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

@media screen and (max-width: 768px) {
    
/* Popup Styles */
.popup {
    width: 90%;
    display: none; /* Hidden by default */
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1000;
}
    
}