/* Popup-Styles */
.ebms-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.ebms-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
.ebms-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 95%;
    max-height: 95%;
    overflow: auto;
}
.ebms-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #aaa;
    z-index: 1;
}
.ebms-popup-close:hover {
    color: #333;
}
.ebms-popup-inner {
    padding: 20px;
}
/* Animation-Stile */
.ebms-popup[data-animation="fade"] .ebms-popup-content {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ebms-popup.active[data-animation="fade"] .ebms-popup-content {
    opacity: 1;
}
.ebms-popup[data-animation="slide"] .ebms-popup-content {
    transform: translate(-50%, -40%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.ebms-popup.active[data-animation="slide"] .ebms-popup-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}