    .tag-search-container {
        width: 100%;
        box-sizing: border-box;
    }

    .tag-search-form {
        display: flex;
        max-width: 900px;
        gap: 10px;
        align-items: center;
        background: rgba(255, 255, 255, 0.03);
        padding: 15px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 30px;
    }

    .search-input-group {
        flex-grow: 1;
        display: flex;
        flex-direction: row;
        gap: 5px;
    }

    .tag-search-form input[type="text"],
    .tag-search-form select {
        padding: 8px 12px;
        background: #1a1a1a; /* Dark theme */
        border: 1px solid #444;
        border-radius: 4px;
        color: #eee;
        font-size: 14px;
        outline: none;
        transition: border-color 0.2s;
    }

    .tag-search-form input[type="text"] {
        width: 100%;
    }

    .tag-search-form input[type="text"]:focus,
    .tag-search-form select:focus {
        border-color: #007bff;
    }

    .tag-search-form button {
        padding: 8px 20px;
        background: #007bff;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.2s;
        height: 36px; /* Matches input height */
    }

    .tag-search-form button:hover {
        background: #0056b3;
    }

    /* Mobile-specific styles */
    @media screen and (max-width: 768px) {
        .updated_field {
            display: none;
        }

        .long_string {
            font-size: clamp(10px, 2.85vw, 20px); /* Scales font based on screen width */
            white-space: nowrap;
        }

        .tag-search-form {
            flex-direction: column;
            align-items: stretch;
        }

        .search-input-group-buttons {
            align-self: center;
        }
    }