/* Overlay styling voor loading indicator */
.amazing-brezo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.amazing-brezo-overlay-content {
    background-color: white;
    width: 400px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.amazing-brezo-overlay-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.amazing-brezo-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: amazing-brezo-spin 1s linear infinite;
}

@keyframes amazing-brezo-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
