.custom-modal {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    inset: 0;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.custom-modal__content {
    background-color: white;
    padding: 40px;
    min-width: 400px;
}
.custom-modal__content h5 {
    font-size: 16px;
    font-weight: 500;
    margin: 20px 0;
    text-align: center;
}
.custom-modal__content button {
    max-height: 40px;
}
.custom-modal__header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.custom-modal__header h4 {
    margin: 0;
}
@media screen and (max-width: 768px) {
    .custom-modal__content {
        padding: 20px;
    }
}
