/* Under Development Styling - TEMPORARY FILE */
/* This file contains styling for subsections showing "under development" messaging */
/* DELETE this file when all subsections are ready for production */

.under-development-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-xl);
    min-height: 200px;
}

.under-development-content {
    text-align: center;
    max-width: 500px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.under-development-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.under-development-title {
    color: var(--text-color);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
}

.under-development-message {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-base);
}

.under-development-status {
    margin-top: var(--space-md);
}

.status-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}