/* Größerer Kalender */
#svt-busplan {
    min-height: 700px; 
}

/* Modal-Overlay */
#svt-bus-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 99998;
    display: none;
}

/* Modal */
#svt-bus-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 480px;
    max-width: 90%;
    background: #fff;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 99999;
    display: none;
    font-size: 16px;
}

/* Modal Inputs */
#svt-bus-modal input,
#svt-bus-modal select {
    width: 100%;
    margin-top: 6px;
    margin-bottom: 12px;
    padding: 8px;
}

/* Buttons */
.svt-bus-btn {
    padding: 10px 18px;
    background: #1e90ff;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}
.svt-bus-btn.cancel {
    background: #999;
}
