.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    inset: 0;
}

.custom-modal-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    text-align: center;
    min-width: 250px;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.custom-modal-text {
    margin-bottom: 15px;
}

.custom-modal-close {
    padding: 8px 15px;
    background: #009245;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.custom-modal-close:hover {
    background: #007a37;
}

.error-mobile {
    display: none;
}
.error-desktop {
    display: block;
}

@media (max-width: 768px) {
    .error-mobile {
        display: flex;
    }
    .error-desktop {
        display: none;
    }
}

