#dilosi_simetoxis {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#dilosi_simetoxis:hover:not(:disabled) {
    background-color: #005a87;
}

#dilosi_simetoxis:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#dilosi_simetoxis.success {
    background-color: #46b450;
}

#dilosi_simetoxis.error {
    background-color: #dc3232;
}

#dilosi_simetoxis.ds-button-disabled {
    background-color: #999;
    cursor: not-allowed;
    opacity: 0.7;
}

.ds-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.ds-popup.ds-popup-show {
    opacity: 1;
    visibility: visible;
}

.ds-popup-content {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.ds-popup.ds-popup-show .ds-popup-content {
    transform: scale(1);
}

.ds-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.ds-popup-close:hover {
    color: #000;
}

.ds-popup-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.ds-popup-success .ds-popup-content {
    border-top: 4px solid #46b450;
}

.ds-popup-error .ds-popup-content {
    border-top: 4px solid #dc3232;
}
