/* --- Color Variables (from existing styles) --- */
        :root {
            --bg-dark-teal: #0e2a32;
            --text-cream: #f5e6c8;
            --accent-gold: #d4af37;
            --card-darker: #1a3c46;
            --shadow-color: rgba(0, 0, 0, 0.4);
        }

        /* --- Global Styles --- */
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-dark-teal);
            margin: 0;
            padding: 0;
            color: var(--text-cream);
            line-height: 1.6;
        }

        /* --- Verify Section Container --- */
        .verify-section {
            padding: 80px 20px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .verify-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .verify-section p {
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        /* --- Search Form Container --- */
        .search-container {
            background-color: var(--card-darker);
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 4px 10px var(--shadow-color);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .search-container label {
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-weight: 600;
            color: var(--accent-gold);
        }

        .search-form {
            display: flex;
            width: 100%;
            max-width: 450px;
            gap: 10px;
        }

        .search-form input[type="text"] {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid var(--card-darker);
            border-radius: 8px;
            background-color: var(--bg-dark-teal);
            color: var(--text-cream);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .search-form input[type="text"]:focus {
            border-color: var(--accent-gold);
        }

        .search-form button {
            background-color: var(--accent-gold);
            color: var(--bg-dark-teal);
            border: none;
            padding: 12px 25px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.1s;
            white-space: nowrap;
        }

        .search-form button:hover {
            background-color: #e0b441; /* Slightly brighter gold */
            transform: translateY(-1px);
        }

        .note {
            color: #ef5a69;
            font-size: medium;
            margin-top: 20px;
        }
        /* --- Result Message Styles --- */
        #searchResult {
            margin-top: 30px;
            padding: 15px;
            border-radius: 8px;
            font-weight: 600;
            display: none; /* Hidden by default */
            text-align: left;
            width: 100%;
            max-width: 450px;
        }

        .success {
            background-color: rgba(37, 211, 102, 0.2); /* Light green tint */
            border: 1px solid #25d366; /* Success Green */
            color: #25d366;
        }

        .error {
            background-color: rgba(220, 53, 69, 0.2); /* Light red tint */
            border: 1px solid #dc3545; /* Error Red */
            color: #dc3545;
        }

        /* Mobile responsiveness */
        @media (max-width: 550px) {
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .search-form input[type="text"] {
                margin-bottom: 0;
            }
        }