/* Modal Styles */
.enbarezept-modal {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enbarezept-modal.show {
    opacity: 1;
}

.enbarezept-modal-content {
    background-color: #ffffff;
    margin: 10% auto; 
    padding: 0;
    border: 1px solid #ddd;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease-out;
}

.enbarezept-modal.show .enbarezept-modal-content {
    transform: translateY(0);
}

.enbarezept-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.enbarezept-modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
}

.enbarezept-modal-body {
    padding: 20px;
}

.enbarezept-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #e5e5e5;
    text-align: right;
}

.enbarezept-modal-close {
    color: #888;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    opacity: 0.7;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.enbarezept-modal-close:hover,
.enbarezept-modal-close:focus {
    color: #333;
    opacity: 1;
    text-decoration: none;
}
