/* Sticky opslaan knop */
.sticky-save-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.sticky-save-button {
    background-color: #ff195d;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background-color 0.3s;
}

.sticky-save-button:hover {
    background-color: #d61e53;
}

/* Loading indicator styling */
.loading-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ff195d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    font-weight: bold;
}
