/* SweetAlert Loading Spinner */
.loading-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.loading-message p {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(46, 8, 244, 0.2);
    border-top: 3px solid #2e08f4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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