/* Custom SweetAlert styling */
.swal-popup {
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.swal-title {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #2c3e50;
}

.swal-icon {
    transform: scale(1.2);
    margin: 2rem auto;
}

.swal-confirm {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
}

.loading-animation {
    padding: 1rem 0;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.spinner-grow {
    width: 1rem;
    height: 1rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 0.5s ease-in-out;
}
