/* Status Message */
.status-message {
    padding: 12px 16px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: var(--radius-md);
    font-size: 13px;
    text-align: center;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.status-message.success {
    background: var(--green-light);
    color: var(--green);
    border-color: rgba(48, 209, 88, 0.2);
}

.status-message.error {
    background: var(--red-light);
    color: var(--red);
    border-color: rgba(255, 59, 48, 0.2);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-content {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 320px;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border-light);
    border-top: 3px solid var(--blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text #loadingTitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.loading-text #loadingSubtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

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