/* Einheitliche Ladeanimation für Dashboard-Bestätigungen (Artists & Organizers) */

.dashboard-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 5000;
    justify-content: center;
    align-items: center;
}

.dashboard-loading-overlay.active {
    display: flex;
}

.dashboard-loading-popup {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.dashboard-loading-popup h2 {
    font-size: 22px;
    color: #815da7;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.dashboard-loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    border: 3px solid rgba(242, 140, 56, 0.2);
    border-radius: 50%;
    border-top-color: #F28C38;
    animation: dashboard-loading-spin 1s cubic-bezier(0.55, 0.055, 0.675, 0.19) infinite;
}

.dashboard-loading-popup p {
    color: #555;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

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