
        :root {
            --primary-color: #006a63;
            --primary-light: #00aca0;
            --primary-dark: #5b21b6;
            --background-light: #f8fafc;
            --background-dark: #0f172a;
            --card-light: #ffffff;
            --card-dark: #1e293b;
            --text-light: #1e293b;
            --text-dark: #f1f5f9;
            --text-secondary-light: #64748b;
            --text-secondary-dark: #cbd5e1;
            --border-light: #e2e8f0;
            --border-dark: #334155;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #006a63;
            --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-dark: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.3s, color 0.2s, border-color 0.3s;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: var(--background-light);
            color: var(--text-light);
            min-height: 100vh;
        }

        body.dark-mode {
            background-color: var(--background-dark);
            color: var(--text-dark);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 10px;
        }
        .fw-bold{
            font-weight: bold;
            color: var(--primary-color);
        }
        .text-danger{
            color: #ff2200;
        }
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #00615a, #00aca0);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow-light);
        }

        body.dark-mode header {
            box-shadow: var(--shadow-dark);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .logo i {
            font-size: 2rem;
        }

        .theme-toggle {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Main Content */
        .main-content {
            padding: 2rem 0;
        }

        .hero {
            text-align: center;
            margin-bottom: 2.5rem;
            padding: 2rem;
            background-color: var(--card-light);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
        }

        body.dark-mode .hero {
            background-color: var(--card-dark);
            box-shadow: var(--shadow-dark);
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        body.dark-mode .hero h1 {
            color: var(--primary-light);
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--text-secondary-light);
            max-width: 800px;
            margin: 0 auto;
        }

        body.dark-mode .hero p {
            color: var(--text-secondary-dark);
        }

        /* Search Section */
        .search-section {
            background-color: var(--card-light);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            margin-bottom: 2rem;
        }

        body.dark-mode .search-section {
            background-color: var(--card-dark);
            box-shadow: var(--shadow-dark);
        }

        .search-box {
            display: flex;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-radius: 50px;
            overflow: hidden;
        }

        body.dark-mode .search-box {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            background-color: white;
            color: var(--text-light);
        }

        body.dark-mode .search-input {
            background-color: #334155;
            color: var(--text-dark);
        }

        .search-input:focus {
            outline: none;
        }

        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
        }

        .search-btn:hover {
            background-color: var(--primary-dark);
        }

        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .feature-card {
            background-color: var(--card-light);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--shadow-light);
            border-top: 4px solid var(--primary-color);
        }

        body.dark-mode .feature-card {
            background-color: var(--card-dark);
            box-shadow: var(--shadow-dark);
        }

        .feature-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            margin-bottom: 0.8rem;
            color: var(--primary-color);
        }

        body.dark-mode .feature-card h3 {
            color: var(--primary-light);
        }

        /* History Section */
        .history-section {
            background-color: var(--card-light);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            margin-bottom: 2rem;
        }

        body.dark-mode .history-section {
            background-color: var(--card-dark);
            box-shadow: var(--shadow-dark);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        body.dark-mode .section-title {
            color: var(--primary-light);
        }

        .clear-btn {
            background-color: var(--danger-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
        }

        .clear-btn:hover {
            background-color: #dc2626;
        }

        .history-list {
            list-style: none;
        }

        .history-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            border-bottom: 1px solid var(--border-light);
        }

        body.dark-mode .history-item {
            border-bottom: 1px solid var(--border-dark);
        }

        .history-item:last-child {
            border-bottom: none;
        }

        .history-query {
            color: var(--text-light);
        }

        body.dark-mode .history-query {
            color: var(--text-dark);
        }

        .history-time {
            color: var(--text-secondary-light);
            font-size: 0.9rem;
        }

        body.dark-mode .history-time {
            color: var(--text-secondary-dark);
        }

        /* Footer */
        footer {
            background-color: var(--card-light);
            color: var(--text-secondary-light);
            padding: 2rem 0;
            margin-top: 2rem;
            border-top: 1px solid var(--border-light);
        }

        body.dark-mode footer {
            background-color: var(--card-dark);
            color: var(--text-secondary-dark);
            border-top: 1px solid var(--border-dark);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-links a {
            color: var(--text-secondary-light);
            text-decoration: none;
        }

        body.dark-mode .footer-links a {
            color: var(--text-secondary-dark);
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .copyright {
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .search-box {
                flex-direction: column;
                border-radius: 12px;
            }
            
            .search-input, .search-btn {
                width: 100%;
                border-radius: 0;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }