.einsatz-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.einsatz-pagination button {
    padding: 5px 10px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}

.einsatz-pagination button.active {
    background: #B71C1C;
    color: #fff;
    border-color: #B71C1C;
}

.einsatz-pagination button:hover {
    background: #f0f0f0;
}

.einsatz-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #B71C1C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}