        /* Modern Alert Styling for Graceful Error Handling */
        .alert-container {
            display: flex;
            align-items: flex-start;
            padding: 16px;
            margin-bottom: 24px;
            border-radius: 8px;
            font-size: 0.9rem;
            line-height: 1.5;
            border: 1px solid transparent;
        }
        
        .alert-container.error {
            background-color: #fef2f2;
            color: #991b1b;
            border-color: #fee2e2;
        }
        
        .alert-container.success {
            background-color: #f0fdf4;
            color: #166534;
            border-color: #dcfce7;
        }
        
        .alert-container.warning {
            background-color: #fffbeb;
            color: #92400e;
            border-color: #fed7aa;
        }
        
        .alert-container.info {
            background-color: #eff6ff;
            color: #1e40af;
            border-color: #dbeafe;
        }
        
        .alert-icon {
            flex-shrink: 0;
            margin-right: 12px;
            margin-top: 2px;
        }
        
        .alert-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        
        .alert-content {
            flex: 1;
        }
        
        .alert-title {
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }
        
        .alert-message {
            font-size: 0.875rem;
            line-height: 1.6;
        }
        
        .alert-help {
            margin-top: 8px;
            font-size: 0.85rem;
            opacity: 0.9;
        }
        
        /* Ensure the input matches your design */
        .input-wrapper input {
            width: 100% !important;
            box-sizing: border-box;
        }

        /* Help text styling */
        .help-text {
            margin-top: 20px;
            padding: 12px;
            background-color: #f8fafc;
            border-left: 3px solid #2563eb;
            border-radius: 4px;
            font-size: 0.85rem;
            color: #64748b;
            line-height: 1.6;
        }