
        .money-converter-page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem 0;
        }
        
        /* Header Styles */
        .page-header h1 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .page-header .lead {
            color: var(--text-light);
            font-size: 1.2rem;
        }
        
        /* Card Styles */
        .card {
            border: none;
            border-radius: 16px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            background: white;
        }
        
        .card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        .card-body {
            padding: 2.5rem;
        }
        
        /* Form Styles */
        .form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        
        .form-control, .form-select {
            border: 1px solid #e1e5ee;
            border-radius: 10px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: var(--transition);
            font-family: var(--font-primary);
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.15);
        }
        
        /* Button Styles */
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border: none;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 10px;
            transition: var(--transition);
            font-family: var(--font-heading);
            height: fit-content;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
        }
        
        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            font-weight: 600;
            border-radius: 10px;
            transition: var(--transition);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Result Styles */
        .result-container {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-top: 2rem;
            transition: var(--transition);
        }
        
        .result-container:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        #resultText {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 2rem;
        }
        
        #rateInfo {
            font-size: 1.1rem;
            color: var(--text-light);
        }
        
        /* Icon Styles */
        .header-icon {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2rem;
            margin-right: 0.5rem;
        }
        
        /* Currency Flags */
        .currency-option {
            display: flex;
            align-items: center;
            padding: 8px 12px;
        }
        
        .currency-flag {
            width: 24px;
            height: 18px;
            border-radius: 2px;
            margin-right: 10px;
            object-fit: cover;
        }
        
        .currency-code {
            font-weight: 600;
            margin-right: 8px;
            min-width: 50px;
        }
        
        .currency-name {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* Popular Currencies Section */
        .popular-currencies {
            margin-top: 3rem;
        }
        
        .currency-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            height: 100%;
            cursor: pointer;
        }
        
        .currency-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            border: 1px solid var(--primary-light);
        }
        
        .currency-card h5 {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        
        .currency-card .rate {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .currency-card .change {
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .positive {
            color: var(--success-color);
        }
        
        .negative {
            color: var(--danger-color);
        }
        
        /* Loading Spinner */
        .loading-spinner {
            display: none;
            text-align: center;
            padding: 2rem;
        }
        
        /* Error Message */
        .error-message {
            display: none;
            background: var(--danger-light);
            color: var(--danger-color);
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
            text-align: center;
        }
        
        /* Last Updated */
        .last-updated {
            text-align: center;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .card-body {
                padding: 1.5rem;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .result-container {
                padding: 1.5rem;
            }
            
            #resultText {
                font-size: 1.5rem;
            }
        }
        
        /* Animation for results */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.5s ease-out;
        }
        
        /* Search box for currency dropdown */
        .currency-search {
            padding: 0.5rem;
            border-bottom: 1px solid #e1e5ee;
        }
        
        .currency-search input {
            width: 100%;
            padding: 0.5rem;
            border: 1px solid #e1e5ee;
            border-radius: 5px;
        }