
        .modal-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    display: none;
}

.custom-modal {
    background-color: white;
    width: 60%;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    max-height: 90%;
    color: #707070
}

@media (max-width: 768px)
{
    .custom-modal{
        width: 80%;
    }
}

@media (max-width: 400px)
{
    .custom-modal{
        width: 90%;
    }
}

.modal-content {
    padding: 10px 0;
    flex: 1;
    font-size: 14px;
    overflow-y: auto;
}

.modal-content h3 {
    font-size: 16px;
    font-weight: bold;
}

.modal-header>h3.header {
    text-align: center;
    margin: 10px 0;
}
    