/* Custom Modal Styles */
.custom-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
    padding-top: 50px;
}

.custom-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #333;
    font-size: 24px;
    cursor: pointer;
}

.custom-modal-content h3 {
    margin: 20px 0;
}

.custom-dropdown {
    margin: 20px 0;
}

.custom-modal-content .btn {
    margin-top: 20px;
}

/* Responsive Modal */
@media screen and (max-width: 768px) {
    .custom-modal-content {
        width: 90%;
    }
}
