/* Event-Details Button im Modal */
.event-details-btn,
.event-save-btn {
    background: #4a6fa1;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.event-details-btn:hover {
    background: #3a5f90;
    box-shadow: 0 0 0 2px rgba(74,111,161,0.25);
}

.event-details-btn:active {
    transform: translateY(1px);
}

/* Event-Editieren Button im Modal */
.modal-edit-btn {
    background: #f1f5ff;
    color: #1e3a5f;
    border: 1px solid #c7d5f5;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
}

.modal-edit-btn:hover {
    background: #e4ecff;
}

.modal-edit-btn[data-mode="save"] {
    background: #4a6fa1;
    color: #fff;
    border-color: #4a6fa1;
    box-shadow: 0 0 0 2px rgba(74,111,161,0.25);
}

#eventDetailModal.mode-edit .modal-body {
    background: #f9fbff;
}